summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-10-28 18:43:37 +0800
committerGuangxiong Lin <[email protected]>2022-10-28 18:48:14 +0800
commit88985762ec88f51fb8aa89cf115b4a822a87f0b0 (patch)
tree45a7d6a87dfe4d84274ab1e0e28019ca494a7209 /Makefile
parent7df8ee0b3b3159e3c704ad4bd2fe940c72ae4e21 (diff)
downloadwd-88985762ec88f51fb8aa89cf115b4a822a87f0b0.tar.gz
wd-88985762ec88f51fb8aa89cf115b4a822a87f0b0.tar.bz2
wd-88985762ec88f51fb8aa89cf115b4a822a87f0b0.zip
Add wd-editv0.0.3
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