
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5665 ec53bebd-3082-4978-b11e-865c3cabbd6b
15 lines
309 B
Makefile
15 lines
309 B
Makefile
# $Id$
|
|
|
|
include $(top_srcdir)/cf/Makefile.am.common
|
|
|
|
SUFFIXES += .x
|
|
|
|
.x.c:
|
|
@cmp -s $< $@ 2> /dev/null || cp $< $@
|
|
|
|
check-local::
|
|
@foo='$(bin_PROGRAMS) $(libexec_PROGRAMS) $(sbin_PROGRAMS)'; \
|
|
for i in $$foo; do \
|
|
if ./$$i --help > /dev/null 2>&1; then :; \
|
|
else echo "*** $$i failed check ***"; fi; done
|