2008-09-26 14:25:10 +00:00
|
|
|
noinst_PROGRAMS = syngentest
|
|
|
|
|
|
|
|
syngentest_CPPFLAGS = -DMEMORY_OFFSET=8192
|
|
|
|
|
|
|
|
if M68K_HOSTCPU
|
|
|
|
syngentest_SOURCES = main.c driver.c tests.c setup.c \
|
|
|
|
testtrap.c callemulator.s run68k.s crc.c testrt.c testqsort.c
|
|
|
|
else
|
|
|
|
syngentest_SOURCES = main.c driver.c tests.c setup.c \
|
|
|
|
testtrap.c crc.c testrt.c testqsort.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
nodist_syngentest_SOURCES = testbattery.c
|
|
|
|
|
|
|
|
testbattery.c: tests.c maketestbattery.pl
|
|
|
|
rm -f testbattery.c
|
|
|
|
$(srcdir)/maketestbattery.pl < $(srcdir)/tests.c > testbattery.c
|
|
|
|
chmod a-w testbattery.c
|
|
|
|
|
|
|
|
syngentest_LDADD = ../runtime/libsyn68k.a
|
|
|
|
|
2009-06-06 17:49:53 +00:00
|
|
|
syngentest_LDFLAGS = @EXECSTACK@
|
2008-09-26 14:25:10 +00:00
|
|
|
|
|
|
|
INCLUDES = -I$(srcdir)/include -I$(srcdir)/../include -I../include
|
|
|
|
|
|
|
|
CLEANFILES = testbattery.c
|
|
|
|
|