diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..df27ee1 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +ifeq ($(PREFIX),) + PREFIX := /usr +endif + +install: + # systemd file + install -d $(DESTDIR)$(PREFIX)/lib/systemd/user/ + install gotify-dunst.service $(DESTDIR)$(PREFIX)/lib/systemd/user/ + + # files in /usr/lib + install -d $(DESTDIR)$(PREFIX)/lib/gotify-dunst/ + install main.py $(DESTDIR)$(PREFIX)/lib/gotify-dunst/ + install gotify-dunst.conf $(DESTDIR)$(PREFIX)/lib/gotify-dunst/ \ No newline at end of file