change annoying `make install` behavior
This commit is contained in:
parent
4c530ac123
commit
5e607f898f
2
Makefile
2
Makefile
|
@ -37,12 +37,14 @@ all: $(SETUP)
|
||||||
./$(SETUP) -all $(ALLFLAGS)
|
./$(SETUP) -all $(ALLFLAGS)
|
||||||
|
|
||||||
install: $(SETUP) setup.data
|
install: $(SETUP) setup.data
|
||||||
|
ocamlfind remove utop 2>/dev/null || true
|
||||||
./$(SETUP) -install $(INSTALLFLAGS)
|
./$(SETUP) -install $(INSTALLFLAGS)
|
||||||
|
|
||||||
uninstall: $(SETUP) setup.data
|
uninstall: $(SETUP) setup.data
|
||||||
./$(SETUP) -uninstall $(UNINSTALLFLAGS)
|
./$(SETUP) -uninstall $(UNINSTALLFLAGS)
|
||||||
|
|
||||||
reinstall: $(SETUP) setup.data
|
reinstall: $(SETUP) setup.data
|
||||||
|
ocamlfind remove utop 2>/dev/null || true
|
||||||
./$(SETUP) -reinstall $(REINSTALLFLAGS)
|
./$(SETUP) -reinstall $(REINSTALLFLAGS)
|
||||||
|
|
||||||
clean: $(SETUP)
|
clean: $(SETUP)
|
||||||
|
|
Loading…
Reference in New Issue