diff --git a/Makefile b/Makefile deleted file mode 100644 index c735c94..0000000 --- a/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/make -f - -APP = manjaro-iso-downloader -PREFIX = /usr -PATH = $(DESTDIR)$(PREFIX)/share/bin -PATHDESKTOP = $(DESTDIR)$(PREFIX)/share/applications -DEL = rm -f -INSTDESK = install -Dm644 -INSTBIN = install -Dm755 - -install: - $(INSTBIN) $(PATH) $(APP).sh - $(INSTDESK) $(DPATH) $(APP).desktop - mv $(PATH)/$(APP).sh $(PATH)/$(APP) - -uninstall: - $(DEL) $(PATH)/$(APP) $(DPATH)/$(APP).desktop -