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