propogate MAKEINFO like we propogate BISON

This commit is contained in:
K. Richard Pixley
1991-11-13 09:23:05 +00:00
parent b53404d270
commit b772d75ef5

View File

@ -16,7 +16,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
# #
# Last Mod Tue Nov 12 22:24:08 PST 1991, by rich@cygnus.com # Last Mod Wed Nov 13 01:00:48 PST 1991, by rich@cygnus.com
# #
# $Id$ # $Id$
@ -35,6 +35,10 @@ BISON = `if [ -d $(unsubdir)/../bison ] ; \
then echo \`pwd\`/$(unsubdir)/../bison$(subdir)/bison -L \`pwd\`/$(unsubdir)/../bison$(subdir)/ ; \ then echo \`pwd\`/$(unsubdir)/../bison$(subdir)/bison -L \`pwd\`/$(unsubdir)/../bison$(subdir)/ ; \
else echo yacc ; fi` else echo yacc ; fi`
MAKEINFO = `if [ -d $(unsubdir)/../texinfo/C ] ; \
then echo \`pwd\`/$(unsubdir)/../texinfo/C$(subdir)/makeinfo ; \
else echo echo ; fi`
#\`(cd $(srcdir)/bison ; \\`pwd\\`)\` #\`(cd $(srcdir)/bison ; \\`pwd\\`)\`
SUBDIRS = libiberty readline bfd gdb binutils ld gas gcc gnulib clib SUBDIRS = libiberty readline bfd gdb binutils ld gas gcc gnulib clib
OTHERS = OTHERS =
@ -66,7 +70,9 @@ subdir_do: force
if (cd $(unsubdir)/$$i$(subdir); \ if (cd $(unsubdir)/$$i$(subdir); \
$(MAKE) \ $(MAKE) \
"against=$(against)" \ "against=$(against)" \
"BISON=$(BISON)" $(DO)) ; then true ; \ "BISON=$(BISON)" \
"MAKEINFO=$(MAKEINFO)" \
$(DO)) ; then true ; \
else exit 1 ; fi ; \ else exit 1 ; fi ; \
else if [ -d $(unsubdir)/$$i ] ; then \ else if [ -d $(unsubdir)/$$i ] ; then \
if (cd $(unsubdir)/$$i$(subdir); \ if (cd $(unsubdir)/$$i$(subdir); \
@ -78,7 +84,9 @@ subdir_do: force
"RANLIB=$(RANLIB)" \ "RANLIB=$(RANLIB)" \
"LOADLIBES=$(LOADLIBES)" \ "LOADLIBES=$(LOADLIBES)" \
"LDFLAGS=$(LDFLAGS)" \ "LDFLAGS=$(LDFLAGS)" \
"BISON=$(BISON)" $(DO)) ; then true ; \ "BISON=$(BISON)" \
"MAKEINFO=$(MAKEINFO)" \
$(DO)) ; then true ; \
else exit 1 ; fi ; \ else exit 1 ; fi ; \
else true ; fi ; \ else true ; fi ; \
fi ; \ fi ; \