quakeforge/tools/qflight/source/Makemodule.am
Bill Currie bfa7c1722a [build] Implement tracy memory zones
This proved to be quite the challenge, and is probably rather fragile,
but it does seem to work, and might help with tracking down memory
leaks.
2024-01-05 11:50:48 +09:00

22 lines
587 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 \
$(tracy_src)
qflight_LDFLAGS= $(PTHREAD_LDFLAGS)
qflight_LDADD= $(QFLIGHT_LIBS)
qflight_DEPENDENCIES= $(QFLIGHT_DEPS)