2002-12-12 13:13:18 +01:00
|
|
|
iall:
|
2001-01-08 18:28:53 +01:00
|
|
|
install:
|
2001-01-08 23:18:30 +01:00
|
|
|
test:
|
|
|
|
|
2014-10-13 00:00:39 +02:00
|
|
|
# TESTCASES are taken from Makefile.inc
|
|
|
|
include Makefile.inc
|
2011-05-13 08:55:15 +02:00
|
|
|
|
|
|
|
EXTRA_DIST = $(TESTCASES) DISABLED
|
2007-10-01 00:58:24 +02:00
|
|
|
|
|
|
|
filecheck:
|
|
|
|
@mkdir test-place; \
|
2007-10-24 21:40:07 +02:00
|
|
|
cp "$(top_srcdir)"/tests/data/test[0-9]* test-place/; \
|
2008-04-30 23:20:08 +02:00
|
|
|
rm test-place/*~; \
|
2007-10-01 00:58:24 +02:00
|
|
|
for f in $(EXTRA_DIST); do \
|
2007-10-24 21:40:07 +02:00
|
|
|
if test -f "$(top_srcdir)/tests/data/$$f"; then \
|
2008-07-29 20:57:01 +02:00
|
|
|
rm -f "test-place/$$f"; \
|
2007-10-01 00:58:24 +02:00
|
|
|
else \
|
|
|
|
echo "$$f is listed but missing!"; \
|
|
|
|
fi \
|
|
|
|
done; \
|
|
|
|
echo "Local files not present in EXTRA_DIST:" ; \
|
|
|
|
ls test-place; \
|
2008-07-29 20:57:01 +02:00
|
|
|
! ls test-place | grep . >/dev/null ; \
|
|
|
|
RC=$$? ; \
|
|
|
|
rm -rf test-place ; \
|
|
|
|
exit $$RC
|
2007-10-01 00:58:24 +02:00
|
|
|
|
2010-01-11 16:50:30 +01:00
|
|
|
show:
|
|
|
|
@echo $(EXTRA_DIST)
|