aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1991-08-26 04:45:57 +0000
committerK. Richard Pixley <rich@cygnus>1991-08-26 04:45:57 +0000
commit5710dc3779c248b76fabe663655f4ca8925f748c (patch)
treea02934be09498bb5b8076eb095eb5ffa93d79cfc /Makefile.in
parentd1477ba8d644517cfdda739771a6ffd799e35581 (diff)
downloadgdb-5710dc3779c248b76fabe663655f4ca8925f748c.zip
gdb-5710dc3779c248b76fabe663655f4ca8925f748c.tar.gz
gdb-5710dc3779c248b76fabe663655f4ca8925f748c.tar.bz2
Correcting install target when gcc not present.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in22
1 files changed, 17 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index 5f22095..5dcb3b0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -16,7 +16,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#
-# Last Mod Sun Aug 25 15:21:45 PDT 1991, by rich@cygint.cygnus.com
+# Last Mod Sun Aug 25 21:42:08 PDT 1991, by rich@cygint.cygnus.com
#
# $Id$
@@ -135,11 +135,20 @@ install-dirs: force
- mkdir $(destdir)/include
- mkdir $(destdir)/man
- mkdir $(destdir)/man/man1
- (cd $(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
- then echo .$(target) ; fi`$(subdir) ; $(MAKE) install-dir)
+ if [ -d $(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
+ then echo .$(target) ; fi`$(subdir) ] ; then \
+ (cd $(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
+ then echo .$(target) ; fi`$(subdir) ; \
+ $(MAKE) install-dir) ; \
+ fi
install-fixed-includes: force
- (cd gcc ; $(MAKE) install-fixed-includes)
+ if [ -d $(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
+ then echo .$(target) ; fi`$(subdir) ] ; then \
+ (cd $(srcdir)/gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
+ then echo .$(target) ; fi`$(subdir) ; \
+ $(MAKE) install-fixed-includes) ; \
+ fi
etags tags: TAGS
@@ -190,7 +199,10 @@ force_update:
#
# $Log$
-# Revision 1.28 1991/08/25 23:40:22 rich
+# Revision 1.29 1991/08/26 04:45:57 rich
+# Correcting install target when gcc not present.
+#
+# Revision 1.28 1991/08/25 23:40:22 rich
# rcs enters the soup.
#
# Revision 1.27 1991/08/23 07:15:56 gnu