11 lines
370 B
Makefile
11 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
|