|
Revision 1465, 377 bytes
(checked in by ben, 4 years ago)
|
|
Makefile um xmodmaps zu erzeugen
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | all: portable grafik linux/bin/installiere_neo |
|---|
| 2 | |
|---|
| 3 | portable: |
|---|
| 4 | make -kC portable deploy |
|---|
| 5 | |
|---|
| 6 | grafik: |
|---|
| 7 | make -kC grafik |
|---|
| 8 | |
|---|
| 9 | linux/bin/installiere_neo: |
|---|
| 10 | make -kC linux |
|---|
| 11 | |
|---|
| 12 | svnclean: |
|---|
| 13 | make -C portable clean |
|---|
| 14 | make -C linux clean |
|---|
| 15 | |
|---|
| 16 | clean: svnclean |
|---|
| 17 | make -kC grafik clean |
|---|
| 18 | |
|---|
| 19 | svnupdate: |
|---|
| 20 | make svnclean |
|---|
| 21 | svn up |
|---|
| 22 | make -k |
|---|
| 23 | |
|---|
| 24 | .PHONY: all clean svnupdate svnclean portable grafik linux/bin/installiere_neo |
|---|