summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorben <ben@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2009-01-11 11:54:07 +0000
committerben <ben@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2009-01-11 11:54:07 +0000
commit081df3c3dc85f6fcf8b70de6c7f5b756d68ab3cc (patch)
tree9902da4df5c120696effc0b42031f4151a06e447 /Makefile
parent3b1b5a3605ffb6c7dae352a1062fb7bd23c55ddb (diff)
downloadneo-layout-081df3c3dc85f6fcf8b70de6c7f5b756d68ab3cc.tar.gz
neo-layout-081df3c3dc85f6fcf8b70de6c7f5b756d68ab3cc.tar.bz2
neo-layout-081df3c3dc85f6fcf8b70de6c7f5b756d68ab3cc.zip
Hauptmakefile etwas robuster (falls ein target fehlschlägt)
git-svn-id: https://svn.neo-layout.org@1429 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 13 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index d9828f7..486e820 100644
--- a/Makefile
+++ b/Makefile
@@ -1,18 +1,24 @@
-all:
- make -C portable deploy
- make -C grafik
- make -C linux/bin/installiere_neo
+all: portable grafik linux/bin/installiere_neo
+
+portable:
+ make -kC portable deploy
+
+grafik:
+ make -kC grafik
+
+linux/bin/installiere_neo:
+ make -kC linux/bin/installiere_neo
svnclean:
make -C portable clean
make -C linux/bin/installiere_neo clean
clean: svnclean
- make -C grafik clean
+ make -kC grafik clean
svnupdate:
make svnclean
svn up
- make
+ make -k
-.PHONY: all clean svnupdate svnclean
+.PHONY: all clean svnupdate svnclean portable grafik linux/bin/installiere_neo