Makefile : removed target "all" from target "install"

On some systems, the targets "all" and "install" must be
made with different rights. Then "all" cannot be a dependendy of
"install", especially since ocamlbuild try to read/modify some
files even if there is no compilation to perform.
This commit is contained in:
Gwenal Delaval 2012-06-06 15:55:23 +02:00
parent bb0bc8bfe5
commit 1e46c2a73c

View file

@ -38,7 +38,7 @@ else
$(OCAMLBUILD) $(COMPILER).p.native
endif
install: all
install:
$(INSTALL) -d $(INSTALL_BINDIR)
$(INSTALL) $(COMPILER).$(TARGET) $(INSTALL_BINDIR)/$(COMPILER)
ifeq ($(ENABLE_SIMULATOR), yes)