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

all: \
	hello \
	html

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

FORCE:

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

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