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

DIRS = \
	async \
	form \
	headers \
	hello \
	html \
	put

all: FORCE
	+for d in $(DIRS); do (cd $$d && $(MAKE)); done

clean: FORCE
	+for d in $(DIRS); do (cd $$d && $(MAKE) clean); done

distclean: clean
	+for d in $(DIRS); do (cd $$d && $(MAKE) distclean); done

$(DIRS): FORCE
	+cd $@ && $(MAKE)

FORCE: