aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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
-