minix/external/bsd/file/dist/tests/Makefile.am
2012-06-18 10:53:30 +00:00

12 lines
370 B
Makefile

check_PROGRAMS = test
test_LDADD = $(top_builddir)/src/libmagic.la
test_CPPFLAGS = -I$(top_srcdir)/src
EXTRA_DIST = \
gedcom.magic gedcom.testfile gedcom.result
T = $(top_srcdir)/tests
check-local:
MAGIC=$(top_builddir)/magic/magic ./test
for i in $T/*.testfile; do MAGIC=$T/$${i%%.testfile}.magic $(top_builddir)/tests/test $T/$$i $T/$${i%%.testfile}.result; done