summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2019-12-18 09:18:28 +0200
committerManos Pitsidianakis <el13635@mail.ntua.gr>2019-12-18 12:38:26 +0200
commit450c9f2b1c4a6267af6268e6c26f46126caf64d8 (patch)
treea95b8230cdb700fe22845f725f48844cc49f8651 /Makefile
parentc23cc45edd0ece871194799ee137a84267f60f9d (diff)
downloadmeli-450c9f2b1c4a6267af6268e6c26f46126caf64d8.zip
Add pre-push git hook
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 277ec4de..41f1aa92 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
meli:
cargo build $(FEATURES)--release
-PREFIX=/usr/local
+PREFIX ?= /usr/local
ifdef MELI_FEATURES
FEATURES ?= --features="$(MELI_FEATURES)"
@@ -13,7 +13,7 @@ endif
.PHONY: clean
clean:
- rm -ri ./target/
+ rm -r ./target/
.PHONY: uninstall
@@ -30,3 +30,6 @@ install: meli
cp -f target/release/meli $(DESTDIR)$(PREFIX)/bin
gzip < meli.1 > $(DESTDIR)$(PREFIX)/share/man/man1/meli.1.gz
gzip < meli.conf.5 > $(DESTDIR)$(PREFIX)/share/man/man5/meli.conf.5.gz
+ @echo "\n You might want to read the \"STARTING WITH meli\" section in the manpage (\`man meli\`)"
+ @echo " - Report bugs in the mailing list or git issue tracker https://git.meli.delivery"
+ @echo " - If you have a specific feature or workflow you want to use, you can post in the mailing list or git issue tracker."