aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFilip Wieladek <wattos@gmail.com>2013-05-11 17:07:28 +0200
committerFilip Wieladek <wattos@gmail.com>2013-05-11 17:07:28 +0200
commitd1fa1eb19eeaa95b673e695e48da090be4f55f37 (patch)
tree6ddaba8edbbbb1c90a6efaec947af7ed337766f3 /Makefile
initial version
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f7398e8
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+SUBDIRS=src/kernel src/userspace
+
+default:
+ for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@; done
+
+install:
+ for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@; done
+
+clean:
+ for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@; done \ No newline at end of file