|
Revision 1806, 1.5 KB
(checked in by pascal, 4 years ago)
|
|
plus und minus statt KP_Add und KP_Substract
|
| Line | |
|---|
| 1 | FILES=bin/installiere_neo/installiere_neo xmodmap/neo_de_x-prog.xmodmap xmodmap/neo_de_alternative.xmodmap xmodmap/neo_de.xmodmap.referenz |
|---|
| 2 | |
|---|
| 3 | all:${FILES} |
|---|
| 4 | |
|---|
| 5 | bin/installiere_neo/installiere_neo: xmodmap/neo_de.xmodmap xmodmap/neo_de_alternative.xmodmap xmodmap/neo_de_x-prog.xmodmap console/neo.map bin/asdf bin/uiae ../A-REFERENZ-A/neo20.txt bin/neo bin/num bin/wiemitneo bin/beschreibe ../Compose/Compose.neo etc/neo.conf bin/installiere_neo/erzeuge.installiere_neo bin/installiere_neo/installiere_neo.1 bin/installiere_neo/installiere_neo.2 |
|---|
| 6 | cd bin/installiere_neo; ./erzeuge.installiere_neo > installiere_neo |
|---|
| 7 | chmod a+x $@ |
|---|
| 8 | |
|---|
| 9 | xmodmap/neo_de_x-prog.xmodmap:xmodmap/neo_de.xmodmap |
|---|
| 10 | sed -e 's/\x09Up/\x9KP_Up/g'\ |
|---|
| 11 | -e 's/BackSpace/NoSymbol/g'\ |
|---|
| 12 | -e 's/\x09Delete/\x09KP_Delete/g'\ |
|---|
| 13 | -e 's/\x09Insert/\x09KP_Insert/g'\ |
|---|
| 14 | -e 's/\x09Home/\x09KP_Home/g'\ |
|---|
| 15 | -e 's/\x09Left/\x09KP_Left/g'\ |
|---|
| 16 | -e 's/\x09Down/\x09KP_Down/g'\ |
|---|
| 17 | -e 's/\x09Right/\x09KP_Right/g'\ |
|---|
| 18 | -e 's/\x09End/\x09KP_End/g'\ |
|---|
| 19 | -e 's/\x09Next/\x09KP_Next/g'\ |
|---|
| 20 | -e 's/\x09KP_Add/\x09plus/g'\ |
|---|
| 21 | -e 's/\x09KP_Substract/\x09minus/g'\ |
|---|
| 22 | -e 's/\x09Return/\x09KP_Enter/g' $< > $@ |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | xmodmap/neo_de_alternative.xmodmap:xmodmap/neo_de.xmodmap |
|---|
| 26 | sed -e s/U202F/NoSymbol/g\ |
|---|
| 27 | -e s/dead_stroke/NoSymbol/g\ |
|---|
| 28 | -e s/dead_doublegrave/U02F5/g\ |
|---|
| 29 | -e s/dead_dasia/U1FFE/g $< > $@ |
|---|
| 30 | |
|---|
| 31 | xmodmap/neo_de.xmodmap.referenz:xmodmap/neo_de.xmodmap |
|---|
| 32 | cd xmodmap; ./erzeuge_neo_de_referenz > neo_de.xmodmap.referenz |
|---|
| 33 | |
|---|
| 34 | clean: |
|---|
| 35 | rm -f ${FILES} |
|---|
| 36 | |
|---|
| 37 | .PHONY: clean |
|---|