summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5a89949..7d61d55 100644
--- a/Makefile
+++ b/Makefile
@@ -13,6 +13,7 @@ install:
@install -vm0755 \
"$(PROG)" \
"$(PROG)-journal" \
+ "$(PROG)-edit" \
"$(DESTDIR)$(BINDIR)"
@echo
@echo "$(PROG) is installed succesfully"
@@ -21,6 +22,7 @@ install:
uninstall:
@rm -vrf \
"$(DESTDIR)$(BINDIR)/$(PROG)" \
- "$(DESTDIR)$(BINDIR)/$(PROG)-journal"
+ "$(DESTDIR)$(BINDIR)/$(PROG)-journal" \
+ "$(DESTDIR)$(BINDIR)/$(PROG)-edit"
.PHONY: all install uninstall