Any target using libsubdir must depend on installdirs
From-SVN: r27389
This commit is contained in:
parent
b4204458cc
commit
683a10613f
@ -1,3 +1,8 @@
|
|||||||
|
Mon Jun 7 08:42:40 1999 Craig Burley <craig@jcb-sc.com>
|
||||||
|
|
||||||
|
* Make-lang.in: Any target using libsubdir must depend
|
||||||
|
on installdirs.
|
||||||
|
|
||||||
Sat Jun 5 23:50:36 1999 Craig Burley <craig@jcb-sc.com>
|
Sat Jun 5 23:50:36 1999 Craig Burley <craig@jcb-sc.com>
|
||||||
|
|
||||||
* g77.texi: Describe a few more missing features people
|
* g77.texi: Describe a few more missing features people
|
||||||
|
@ -308,7 +308,9 @@ f77.install-normal:
|
|||||||
|
|
||||||
# Install the driver program as $(target)-g77
|
# Install the driver program as $(target)-g77
|
||||||
# and also as either g77 (if native) or $(tooldir)/bin/g77.
|
# and also as either g77 (if native) or $(tooldir)/bin/g77.
|
||||||
f77.install-common:
|
# Make sure `installdirs' target (from gcc Makefile) has been
|
||||||
|
# run, since we use libsubdir to store our `flag' file, lang-f77.
|
||||||
|
f77.install-common: installdirs
|
||||||
case "$(LANGUAGES)" in \
|
case "$(LANGUAGES)" in \
|
||||||
*[fF]77*) touch $(libsubdir)/lang-f77;; \
|
*[fF]77*) touch $(libsubdir)/lang-f77;; \
|
||||||
*) rm -f $(libsubdir)/lang-f77;; \
|
*) rm -f $(libsubdir)/lang-f77;; \
|
||||||
@ -337,7 +339,9 @@ f77.install-common:
|
|||||||
|
|
||||||
# $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
|
# $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
|
||||||
# to do the install. The sed rule was copied from stmp-int-hdrs.
|
# to do the install. The sed rule was copied from stmp-int-hdrs.
|
||||||
f77.install-info: f77.info
|
# Make sure `installdirs' target (from gcc Makefile) has been
|
||||||
|
# run, since we use libsubdir to store our `flag' file, lang-f77.
|
||||||
|
f77.install-info: f77.info installdirs
|
||||||
case "$(LANGUAGES)" in \
|
case "$(LANGUAGES)" in \
|
||||||
*[fF]77*) touch $(libsubdir)/lang-f77;; \
|
*[fF]77*) touch $(libsubdir)/lang-f77;; \
|
||||||
*) rm -f $(libsubdir)/lang-f77;; \
|
*) rm -f $(libsubdir)/lang-f77;; \
|
||||||
@ -358,7 +362,9 @@ f77.install-info: f77.info
|
|||||||
else : ; fi
|
else : ; fi
|
||||||
rm -f $(libsubdir)/lang-f77
|
rm -f $(libsubdir)/lang-f77
|
||||||
|
|
||||||
f77.install-man: $(srcdir)/f/g77.1
|
# Make sure `installdirs' target (from gcc Makefile) has been
|
||||||
|
# run, since we use libsubdir to store our `flag' file, lang-f77.
|
||||||
|
f77.install-man: $(srcdir)/f/g77.1 installdirs
|
||||||
case "$(LANGUAGES)" in \
|
case "$(LANGUAGES)" in \
|
||||||
*[fF]77*) touch $(libsubdir)/lang-f77;; \
|
*[fF]77*) touch $(libsubdir)/lang-f77;; \
|
||||||
*) rm -f $(libsubdir)/lang-f77;; \
|
*) rm -f $(libsubdir)/lang-f77;; \
|
||||||
@ -376,7 +382,9 @@ f77.install-man: $(srcdir)/f/g77.1
|
|||||||
else true; fi
|
else true; fi
|
||||||
rm -f $(libsubdir)/lang-f77
|
rm -f $(libsubdir)/lang-f77
|
||||||
|
|
||||||
f77.uninstall:
|
# Make sure `installdirs' target (from gcc Makefile) has been
|
||||||
|
# run, since we use libsubdir to store our `flag' file, lang-f77.
|
||||||
|
f77.uninstall: installdirs
|
||||||
case "$(LANGUAGES)" in \
|
case "$(LANGUAGES)" in \
|
||||||
*[fF]77*) touch $(libsubdir)/lang-f77;; \
|
*[fF]77*) touch $(libsubdir)/lang-f77;; \
|
||||||
*) rm -f $(libsubdir)/lang-f77;; \
|
*) rm -f $(libsubdir)/lang-f77;; \
|
||||||
|
Loading…
Reference in New Issue
Block a user