aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ioemu/Makefile
blob: 24215c5a6f4ce4b02d2d395fa565fd2e529e9afe (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

.PHONY: all clean install

all:
	@for subdir in $(SUBDIRS); do 				\
		$(MAKE) -C $$subdir $(MAKEDEFS) $@ || exit -1; 	\
	done

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