diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5a89949 --- /dev/null +++ b/Makefile @@ -0,0 +1,26 @@ +PROG ?= wd +PREFIX ?= /usr +DESTDIR ?= +BINDIR ?= $(PREFIX)/bin + +all: + @echo "$(PROG) is a shell script and doesn't need compilation. It can be simply executed." + @echo + @echo "To install it. Try \"make install\" instead." + @echo + +install: + @install -vm0755 \ + "$(PROG)" \ + "$(PROG)-journal" \ + "$(DESTDIR)$(BINDIR)" + @echo + @echo "$(PROG) is installed succesfully" + @echo + +uninstall: + @rm -vrf \ + "$(DESTDIR)$(BINDIR)/$(PROG)" \ + "$(DESTDIR)$(BINDIR)/$(PROG)-journal" + +.PHONY: all install uninstall |