Files
heimdal/Makefile.am.common
Johan Danielsson 95f96dbe1a make a more working check-local target
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5819 ec53bebd-3082-4978-b11e-865c3cabbd6b
1999-04-01 14:58:43 +00:00

36 lines
745 B
Makefile

# $Id$
include $(top_srcdir)/cf/Makefile.am.common
SUFFIXES += .x
.x.c:
@cmp -s $< $@ 2> /dev/null || cp $< $@
CHECK_LOCAL = $(PROGRAMS)
check-local::
@foo='$(CHECK_LOCAL)'; \
if test "$$foo"; then \
failed=0; all=0; \
for i in $$foo; do \
all=`expr $$all + 1`; \
if ./$$i --version > /dev/null 2>&1; then \
echo "PASS: $$i"; \
else \
echo "FAIL: $$i"; \
failed=`expr $$failed + 1`; \
fi; \
done; \
if test "$$failed" -eq 0; then \
banner="All $$all tests passed"; \
else \
banner="$$failed of $$all tests failed"; \
fi; \
dashes=`echo "$$banner" | sed s/./=/g`; \
echo "$$dashes"; \
echo "$$banner"; \
echo "$$dashes"; \
test "$$failed" -eq 0; \
fi