diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-06-29 19:55:24 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-06-29 19:55:24 +0000 |
commit | 9823504d83589903a67f8a81699b03d24a89b95d (patch) | |
tree | 6801d11d3d4b6aa79594e8fec42f7eeecbb97110 /Makefile.in | |
parent | a4374df58dae7a745e5a3cd8ef52418a53693728 (diff) | |
download | gdb-9823504d83589903a67f8a81699b03d24a89b95d.zip gdb-9823504d83589903a67f8a81699b03d24a89b95d.tar.gz gdb-9823504d83589903a67f8a81699b03d24a89b95d.tar.bz2 |
* Makefile.in (MAKEINFOFLAGS): New variable.
(FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
* build-all.mk, test-build.mk: Pass down --no-split as
MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index bd78d53..3b0d7bb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -80,6 +80,10 @@ LEX = `if [ -f $${rootme}/flex/flex ] ; \ MAKEINFO = `if [ -f $${rootme}/texinfo/makeinfo/makeinfo ] ; \ then echo $${rootme}/texinfo/makeinfo/makeinfo ; \ else echo makeinfo ; fi` +# This just becomes part of the MAKEINFO definition passed down to +# sub-makes. It lets flags be given on the command line while still +# using the makeinfo from the object tree. +MAKEINFOFLAGS = EXPECT = `if [ -f $${rootme}/expect/expect ] ; \ then echo $${rootme}/expect/expect ; \ @@ -223,7 +227,7 @@ BASE_FLAGS_TO_PASS = \ "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \ "CXXFLAGS=$(CXXFLAGS)" \ "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \ - 'GCC_FOR_TARGET=$$(CC_FOR_TARGET)' \ + "GCC_FOR_TARGET=$$(CC_FOR_TARGET)" \ "INSTALL=$(INSTALL)" \ "INSTALL_DATA=$(INSTALL_DATA)" \ "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ @@ -231,7 +235,7 @@ BASE_FLAGS_TO_PASS = \ "LDFLAGS=$(LDFLAGS)" \ "LEX=$(LEX)" \ "LOADLIBES=$(LOADLIBES)" \ - "MAKEINFO=$(MAKEINFO)" \ + "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \ "MUNCH_NM=$(MUNCH_NM)" \ "NM_FOR_TARGET=$(NM_FOR_TARGET)" \ "PRMS=$(PRMS)" \ @@ -968,7 +972,8 @@ Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) # Build GDB distributions that contain BFD, Include, Libiberty, Readline, etc DEVO_SUPPORT= README Makefile.in configure configure.in \ - config.guess config.sub config move-if-change + config.guess config.sub config move-if-change \ + COPYING COPYING.LIB install.sh ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \ configure.texi standards.texi make-stds.texi GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline glob sim |