aboutsummaryrefslogtreecommitdiffstats
path: root/l4basic/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'l4basic/Makefile')
-rw-r--r--l4basic/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/l4basic/Makefile b/l4basic/Makefile
new file mode 100644
index 0000000..cc3afdc
--- /dev/null
+++ b/l4basic/Makefile
@@ -0,0 +1,12 @@
+.PHONY: all clean install uninstall
+all:
+ $(MAKE) -C l4darr all
+ $(MAKE) -C l4bds all
+ $(MAKE) -C l4arg all
+clean:
+ $(MAKE) -C l4darr clean
+ $(MAKE) -C l4bds clean
+ $(MAKE) -C l4arg clean
+install:
+ @echo "You should statically link your program against it instead of installing it!"
+