aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ioemu/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ioemu/Makefile')
-rw-r--r--tools/ioemu/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/ioemu/Makefile b/tools/ioemu/Makefile
new file mode 100644
index 0000000000..24215c5a6f
--- /dev/null
+++ b/tools/ioemu/Makefile
@@ -0,0 +1,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