aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-03-01 17:32:48 +0100
committerMattias Andrée <maandree@kth.se>2021-03-01 17:32:48 +0100
commit5703473fc06d8a92ec92d44fab5ddcf19938a1a6 (patch)
tree9a0a521f20c3865ca88c319ae9dfa7e5329021ee /Makefile
parentupdate readme (diff)
downloadmy-keyboard-5703473fc06d8a92ec92d44fab5ddcf19938a1a6.tar.gz
my-keyboard-5703473fc06d8a92ec92d44fab5ddcf19938a1a6.tar.bz2
my-keyboard-5703473fc06d8a92ec92d44fab5ddcf19938a1a6.tar.xz
misc
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index e8e1ec3..0000000
--- a/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-MAP = sv-maandree
-
-default:
- sudo loadkeys "./$(MAP).map"
-
-use: install
- loadkeys "$(MAP)"
-
-compress:
- gzip -9f < "$(MAP).map" > "$(MAP).map.gz"
-
-install: compress
- install -m644 "$(MAP).map.gz" "/usr/share/kbd/keymaps/i386/qwerty/"
-
-clean:
- if [ -f "$(MAP).map.gz" ]; then rm "$(MAP).map.gz"; fi
-
-.PHONY: default use compress clean
-