Browse Source

* install now doesn't install symlink anymore
* symlink is installed by installsym

peter 25 years ago
parent
commit
14170d7d11
1 changed files with 4 additions and 2 deletions
  1. 4 2
      compiler/Makefile.fpc

+ 4 - 2
compiler/Makefile.fpc

@@ -277,6 +277,8 @@ cvstest:
 # Installation
 # Installation
 #####################################################################
 #####################################################################
 
 
+.PHONY: quickinstall install installsym
+
 MSGINSTALLDIR=$(BASEINSTALLDIR)/msg
 MSGINSTALLDIR=$(BASEINSTALLDIR)/msg
 
 
 # This will only install the ppc386.exe, not the message files etc.
 # This will only install the ppc386.exe, not the message files etc.
@@ -292,7 +294,7 @@ endif
         $(INSTALLEXE) $(EXENAME) $(BININSTALLDIR)
         $(INSTALLEXE) $(EXENAME) $(BININSTALLDIR)
 endif
 endif
 
 
-installlib: quickinstall
+install: quickinstall
 ifdef inlinux
 ifdef inlinux
         $(INSTALLEXE) $(COMPILERUTILSDIR)/samplecfg $(BASEINSTALLDIR)/samplecfg
         $(INSTALLEXE) $(COMPILERUTILSDIR)/samplecfg $(BASEINSTALLDIR)/samplecfg
 endif
 endif
@@ -300,7 +302,7 @@ endif
         $(INSTALL) $(MSGFILES) $(MSGINSTALLDIR)
         $(INSTALL) $(MSGFILES) $(MSGINSTALLDIR)
 
 
 # this also installs the link /usr/bin/ppc386. The .deb does that later
 # this also installs the link /usr/bin/ppc386. The .deb does that later
-install: installlib
+installsymlink: install
 ifdef inlinux
 ifdef inlinux
         $(MKDIR) $(BININSTALLDIR)
         $(MKDIR) $(BININSTALLDIR)
         ln -sf $(BASEINSTALLDIR)/ppc386 $(BININSTALLDIR)/ppc386
         ln -sf $(BASEINSTALLDIR)/ppc386 $(BININSTALLDIR)/ppc386