Experimental package creation tool for MinGW.org
Revisão | 6f219a9f426fdf5f79762c00e1d70d4f1113234f (tree) |
---|---|
Hora | 2020-08-22 03:52:38 |
Autor | Keith Marshall <keith@user...> |
Commiter | Keith Marshall |
Support standard "installdirs" and "install-strip" rules.
* Makefile.in (install-dirs): Rename non-standard rule...
(installdirs): ...to this, to conform to GNU standard nomenclature.
(install-strip): Add rule; there is nothing to strip, so just...
(install): ...alias this.
@@ -98,7 +98,10 @@ MAKE_SCRIPT = sed -e 's,%PACKAGE%,$(PACKAGE),' -e 's,%VERSION%,$(VERSION),' | ||
98 | 98 | # Installation Rules |
99 | 99 | # ------------------ |
100 | 100 | # |
101 | -install: install-dirs install-scripts install-libexec | |
101 | +# GNU standards require both "install", and "install-strip" targets. | |
102 | +# There's nothing to strip here, so both may do the same. | |
103 | +# | |
104 | +install install-strip: installdirs install-scripts install-libexec | |
102 | 105 | |
103 | 106 | INSTALL = @INSTALL@ |
104 | 107 | INSTALL_SCRIPT = @INSTALL_SCRIPT@ |
@@ -116,7 +119,7 @@ bindir = @bindir@ | ||
116 | 119 | # place, create it ... |
117 | 120 | # |
118 | 121 | ${bindir} ${libexecdir}/modules ${libexecdir}/plugins: |
119 | -install-dirs: ${bindir} ${libexecdir}/modules ${libexecdir}/plugins | |
122 | +installdirs: ${bindir} ${libexecdir}/modules ${libexecdir}/plugins | |
120 | 123 | $(MKDIR_P) $^ |
121 | 124 | |
122 | 125 | # ... before installing the entire complement of executable scripts ... |