summaryrefslogtreecommitdiff
path: root/examples/hello_TARGETS/Makefile
blob: 95fcf158aee4ed0fcf8f8407927fa1c553e0122e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SUBDIR   =	hello1 hello2

# additional recursive target
TARGETS +=	codingstylechk

# We want to include man pages to the distribution tarball.
# For this we do the following:
# mkcmake manpages; tar -cf /tmp/tarball.tar .
TARGETS += _manpages # _manpages is a new recursive target
.PHONY: manpages
manpages: _manpages
	@rm ${MKC_CACHEDIR}/_mkc*

.include "test.mk"
.include <mkc.subdir.mk>