quakeforge/libs/models/test/Makefile.am
Bill Currie 9fbff2f4d5 Do an audit of the Makefile.am files.
o All instances of LIBADD/LDADD have a corresponding DEPENDENCIES
    specificatiion.
  o libraries now use a lib_ldflags macro to keep things consistent
  o duplication of source/lib names has been minimized (particularly in
    the libraries; more work needs to be done for the executables)
  o automake spec blocks have been organized (again, more work needs to be
    done for the executables)
2012-02-07 16:04:19 +09:00

24 lines
650 B
Makefile

AUTOMAKE_OPTIONS= foreign
INCLUDES= -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)