summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorseth <[email protected]>2022-08-21 13:14:00 -0400
committerseth <[email protected]>2022-08-21 13:15:45 -0400
commita615f6cc4901a05f7fe72a55d005280119cb792e (patch)
tree0f3ddc4ac0a27e3a0077e0b79082df17a4e6e5b9 /Makefile
parenta2ff6e94b6ba21818613611cb3fed15e56f4894d (diff)
refactor and (try to) follow PEP518
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 4eb5369..0000000
--- a/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-shell = /usr/bin/env bash
-PREFIX ?= $(HOME)/.local
-CONFIG = $(HOME)/.config
-ifeq ($(XDG_CONFIG_HOME),)
- CONFIG = $(XDG_CONFIG_HOME)
-endif
-
-install:
- install -Dm755 bin/hiccup $(DESTDIR)$(PREFIX)/bin/hiccup
- install -Dm644 default-config.json $(DESTDIR)$(CONFIG)/hiccup/config.json
-
-uninstall:
- rm $(DESTDIR)$(PREFIX)/bin/hiccup
- rm $(DESTDIR)$(CONFIG)/hiccup/config.json