mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
9fbff2f4d5
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)
24 lines
650 B
Makefile
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)
|