mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-24 20:51:35 +00:00
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.
19 lines
449 B
Text
19 lines
449 B
Text
QFVIS_LIBS=@QFVIS_LIBS@
|
|
QFVIS_DEPS=@QFVIS_DEPS@
|
|
QFVIS_INCS=@QFVIS_INCS@
|
|
|
|
EXTRA_PROGRAMS += qfvis
|
|
bin_PROGRAMS += @QFVIS_TARGETS@
|
|
|
|
qfvis_SOURCES = \
|
|
tools/qfvis/source/base-vis.c \
|
|
tools/qfvis/source/fatpvs.c \
|
|
tools/qfvis/source/flow.c \
|
|
tools/qfvis/source/options.c \
|
|
tools/qfvis/source/qfvis.c \
|
|
tools/qfvis/source/soundphs.c \
|
|
$(tracy_src)
|
|
|
|
qfvis_LDFLAGS= $(PTHREAD_LDFLAGS)
|
|
qfvis_LDADD= $(QFVIS_LIBS)
|
|
qfvis_DEPENDENCIES= $(QFVIS_DEPS)
|