summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: b8fa611a7f5c924c836515a69b71c1f093526467 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# Global Makefile
#

DIRS = server test-app kernel init-script
VPATH = $(DIRS)

all:
	@for dir in $(DIRS) ; do make -C $$dir ; done

install:
	@for dir in $(DIRS) ; do make -C $$dir install ; done

.PHONY:
clean:
	@for dir in $(DIRS) ; do make -C $$dir clean ; done