blob: 78a16a7fbd499b1346409a09f1182b17990ba364 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Order is important!
SUBDIRS=gui memory iodev
all: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
.PHONY: all $(SUBDIRS)
clean:
@for subdir in $(SUBDIRS); do \
$(MAKE) -C $$subdir $(MAKEDEFS) $@ || exit -1; \
done
install:
@for subdir in $(SUBDIRS); do \
$(MAKE) -C $$subdir $(MAKEDEFS) $@ || exit -1; \
done
|