Skip to content
Snippets Groups Projects
Commit a60b0fbe authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[ivette] opam install/remove don't have echo

parent a829222a
No related branches found
No related tags found
No related merge requests found
......@@ -27,20 +27,16 @@
.PHONY: install uninstall
install:
@echo "Installing Ivette…"
@mkdir -p $(PREFIX)/bin
@install ivette/ivette-opam.sh $(PREFIX)/bin/ivette
@mkdir -p $(PREFIX)/lib/frama-c
@tar zcf $(PREFIX)/lib/frama-c/ivette.tgz ivette
@echo "Done"
mkdir -p $(PREFIX)/bin
install ivette/ivette-opam.sh $(PREFIX)/bin/ivette
mkdir -p $(PREFIX)/lib/frama-c
tar zcf $(PREFIX)/lib/frama-c/ivette.tgz ivette
uninstall:
@echo "Removing Ivette…"
@rm -f $(PREFIX)/bin/ivette
@rm -f $(PREFIX)/lib/frama-c/ivette.tgz
@if test -d /Applications/Ivette.app ;\
rm -f $(PREFIX)/bin/ivette
rm -f $(PREFIX)/lib/frama-c/ivette.tgz
if test -d /Applications/Ivette.app ;\
then \
mkdir -p $(PREFIX)/bin; \
install ivette/ivette-macos-cleanup.sh $(PREFIX)/bin/ivette; \
fi
@echo "Done"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment