aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
blob: 672f2094c2831eca17d6af587ecf54c4f3f54981 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.POSIX:

all: \
	headers \
	hello \
	html

clean:
	+cd hello && $(MAKE) clean
	+cd html && $(MAKE) clean

FORCE:

headers: FORCE
	+cd headers && $(MAKE)

hello: FORCE
	+cd hello && $(MAKE)

html: FORCE
	+cd html && $(MAKE)