quakeforge/libs/models/test/Makefile.am
Bill Currie f5501fbf24 Fix a pile of automake deprecation warnings.
s/INCLUDES/AM_CPPFLAGS/g

I <3 sed :)
2013-11-24 13:11:50 +09:00

24 lines
653 B
Makefile

AUTOMAKE_OPTIONS= foreign
AM_CPPFLAGS= -I$(srcdir) -I$(top_srcdir)/include
check_PROGRAMS=testclip testcontents testportals
EXTRA_DIST= trace-id.c trace-qf-bad.c hulls.h main.c
test_libs= \
$(top_builddir)/libs/models/libQFmodels.la \
$(top_builddir)/libs/util/libQFutil.la
testclip_SOURCES= testclip.c hulls.c
testclip_LDADD= $(test_libs)
testclip_DEPENDENCIES= $(test_libs)
testcontents_SOURCES= testcontents.c hulls.c
testcontents_LDADD= $(test_libs)
testcontents_DEPENDENCIES= $(test_libs)
testportals_SOURCES= testportals.c hulls.c
testportals_LDADD= $(test_libs)
testportals_DEPENDENCIES= $(test_libs)
TESTS=$(check_PROGRAMS)