mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
238e80c89b
A couple of things get built when they shouldn't (eg, vkgen) but this gets the build system back to its pre-non-recursive-make configurability.
21 lines
571 B
Text
21 lines
571 B
Text
QFLIGHT_LIBS=@QFLIGHT_LIBS@
|
|
QFLIGHT_DEPS=@QFLIGHT_DEPS@
|
|
QFLIGHT_INCS=@QFLIGHT_INCS@
|
|
|
|
EXTRA_PROGRAMS += qflight
|
|
bin_PROGRAMS += @QFLIGHT_TARGETS@
|
|
|
|
qflight_SOURCES=\
|
|
tools/qflight/source/entities.c \
|
|
tools/qflight/source/ltface.c \
|
|
tools/qflight/source/noise.c \
|
|
tools/qflight/source/options.c \
|
|
tools/qflight/source/properties.c \
|
|
tools/qflight/source/qflight.c \
|
|
tools/qflight/source/threads.c \
|
|
tools/qflight/source/trace.c \
|
|
tools/qflight/source/vis.c
|
|
|
|
qflight_LDFLAGS= $(PTHREAD_LDFLAGS)
|
|
qflight_LDADD= $(QFLIGHT_LIBS)
|
|
qflight_DEPENDENCIES= $(QFLIGHT_DEPS)
|