summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-08-23 03:03:40 -0500
committerFurkan Sahin <furkan-dev@proton.me>2021-08-23 03:03:40 -0500
commit80e192c6e7e469cbe4103ee7109b4d572ab829af (patch)
treef63f005c871fa1ab01586d81a43de68d2a1a13f0 /Makefile
parentb321caec88be2c474e609b1c0a614e05154425f8 (diff)
Add version command
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 44d698a..d75c501 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,8 @@ endif
CMD=git-update-agent
+make:
+
install:
mkdir -p $(DESTDIR)$(PREFIX)$(BINDIR)/
install -D -m 755 $(CMD) $(DESTDIR)$(PREFIX)$(BINDIR)/
@@ -15,4 +17,4 @@ install:
uninstall:
rm -rf $(DESTDIR)$(PREFIX)$(BINDIR)/$(CMD)
-.PHONY: install uninstall $(CMD)
+.PHONY: install uninstall make