-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (24 loc) · 769 Bytes
/
Makefile
File metadata and controls
34 lines (24 loc) · 769 Bytes
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
34
##################################################
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.39.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 "help.mk"
.include "Makefile.inc"
.include <mkc.subprj.mk>