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

all: \
	headers \
	hello \
	html \
	put

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)