summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile29
1 files changed, 18 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index f25d761..fa60ff0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,31 +1,38 @@
-all: portable grafik linux/bin/installiere_neo windows/kbdneo2/Treiber
+all: portable \
+ grafik \
+ linux/bin/installiere_neo \
+ windows/kbdneo2/Treiber \
+ Compose
# wo befinden sich die zu bearbeitenden Dateien (bzw. eigentlich nur Name
# des Parameters)
windows/kbdneo2/Treiber:
- # wo befindet sich das Makefile
- make -kC windows/kbdneo2/Treiber
+ -make -kC windows/kbdneo2/Treiber
portable:
- make -kC portable deploy
+ -make -kC portable deploy
grafik:
- make -kC grafik
+ -make -kC grafik
linux/bin/installiere_neo:
- make -kC linux
+ -make -kC linux
+
+Compose:
+ -make -C Compose XCompose
svnclean:
- make -C portable clean
- make -C linux clean
- make -C windows/kbdneo2/Treiber clean
+ -make -C portable clean
+ -make -C linux clean
+ -make -C windows/kbdneo2/Treiber clean
+ -make -C Compose clean
clean: svnclean
- make -kC grafik clean
+ -make -kC grafik clean
svnupdate:
make svnclean
svn up
make -k
-.PHONY: all clean svnupdate svnclean portable grafik linux/bin/installiere_neo windows/kbdneo2/Treiber
+.PHONY: all clean svnupdate svnclean portable grafik linux/bin/installiere_neo windows/kbdneo2/Treiber Compose