1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
##################################################
SUBPRJ = runawk:test modules examples a_getopt doc
SUBPRJ_DFLT ?= runawk modules
WITH_ALT_GETOPT ?= yes
.if ${WITH_ALT_GETOPT:tl} == "yes"
SUBPRJ_DFLT += a_getopt
.endif
MKC_REQD = 0.26.0
##################################################
# "cleandir" also removes temporary files of regression tests
cleandir: cleandir-test
# Avoid running test-runawk, test-modules etc.
test: all-test
@:
# Also implement test_all
test_all: test_all-test
# We use "target "manpages" for making a distribution tarball
TARGETS += _manpages # _manpages is a new recursive target
DIST_TARGETS = manpages
manpages: _manpages
rm ${MKC_CACHEDIR}/_mkc*
.include "Makefile.inc"
.include <mkc.subprj.mk>
|