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 @@ ...@@ -27,20 +27,16 @@
.PHONY: install uninstall .PHONY: install uninstall
install: install:
@echo "Installing Ivette…" mkdir -p $(PREFIX)/bin
@mkdir -p $(PREFIX)/bin install ivette/ivette-opam.sh $(PREFIX)/bin/ivette
@install ivette/ivette-opam.sh $(PREFIX)/bin/ivette mkdir -p $(PREFIX)/lib/frama-c
@mkdir -p $(PREFIX)/lib/frama-c tar zcf $(PREFIX)/lib/frama-c/ivette.tgz ivette
@tar zcf $(PREFIX)/lib/frama-c/ivette.tgz ivette
@echo "Done"
uninstall: uninstall:
@echo "Removing Ivette…" rm -f $(PREFIX)/bin/ivette
@rm -f $(PREFIX)/bin/ivette rm -f $(PREFIX)/lib/frama-c/ivette.tgz
@rm -f $(PREFIX)/lib/frama-c/ivette.tgz if test -d /Applications/Ivette.app ;\
@if test -d /Applications/Ivette.app ;\
then \ then \
mkdir -p $(PREFIX)/bin; \ mkdir -p $(PREFIX)/bin; \
install ivette/ivette-macos-cleanup.sh $(PREFIX)/bin/ivette; \ install ivette/ivette-macos-cleanup.sh $(PREFIX)/bin/ivette; \
fi 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