* Makefile.in (ETC_SUPPORT): Add configure.
This commit is contained in:
parent
9193c60b55
commit
f2b435665b
2 changed files with 19 additions and 13 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* Makefile.in (ETC_SUPPORT): Add configure.
|
||||
|
||||
Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
|
||||
|
||||
* configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
|
||||
|
|
28
Makefile.in
28
Makefile.in
|
@ -912,9 +912,9 @@ install.all: install-no-fixedincludes
|
|||
fi
|
||||
|
||||
# inet-install is used because the I*Net wants DejaGNU installed but
|
||||
# not built.
|
||||
# not built. Similarly, gzip is built but not installed.
|
||||
inet-install:
|
||||
$(MAKE) INSTALL_MODULES="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//'`" install
|
||||
$(MAKE) INSTALL_MODULES="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//' -e 's/install-gzip//'`" install
|
||||
|
||||
# install-no-fixedincludes is used because Cygnus can not distribute
|
||||
# the fixed header files.
|
||||
|
@ -1015,17 +1015,19 @@ $(CONFIGURE_TARGET_MODULES):
|
|||
@dir=`echo $@ | sed -e 's/configure-target-//'`; \
|
||||
if [ -d $(TARGET_SUBDIR)/$${dir} ]; then \
|
||||
r=`pwd`; export r; \
|
||||
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
|
||||
if [ -f $(TARGET_SUBDIR)/$${dir}/multilib.out ]; then \
|
||||
if cmp $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out > /dev/null; then \
|
||||
rm -f $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
|
||||
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/$${dir}/tmpmulti.out 2> /dev/null; \
|
||||
if [ -s $(TARGET_SUBDIR)/$${dir}/tmpmulti.out ]; then \
|
||||
if [ -f $(TARGET_SUBDIR)/$${dir}/multilib.out ]; then \
|
||||
if cmp $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out > /dev/null; then \
|
||||
rm -f $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
|
||||
else \
|
||||
echo "Multilibs changed for $${dir}, reconfiguring"; \
|
||||
rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/Makefile; \
|
||||
mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
|
||||
fi; \
|
||||
else \
|
||||
echo "Multilibs changed for $${dir}, reconfiguring"; \
|
||||
rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/Makefile; \
|
||||
mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
|
||||
fi; \
|
||||
else \
|
||||
mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
|
||||
fi; \
|
||||
fi; exit 0 # break command into two pieces
|
||||
@dir=`echo $@ | sed -e 's/configure-target-//'`; \
|
||||
|
@ -1396,7 +1398,7 @@ DEVO_SUPPORT= README Makefile.in configure configure.in \
|
|||
# Files in devo/etc used in any net release.
|
||||
# ChangeLog omitted because it may refer to files which are not in this
|
||||
# distribution (perhaps it would be better to include it anyway).
|
||||
ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \
|
||||
ETC_SUPPORT= Makefile.in cfg-paper.texi configure configure.in configure.man \
|
||||
configure.texi standards.texi make-stds.texi \
|
||||
configure.info* standards.info* cfg-paper.info*
|
||||
|
||||
|
@ -1487,14 +1489,14 @@ TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
|
|||
DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
|
||||
|
||||
.PHONY: gas.tar.gz
|
||||
GAS_SUPPORT_DIRS= bfd include libiberty opcodes
|
||||
GAS_SUPPORT_DIRS= bfd include libiberty opcodes make-all.com setup.com
|
||||
gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
|
||||
$(MAKE) -f Makefile.in taz TOOL=gas \
|
||||
SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
|
||||
|
||||
# The FSF "binutils" release includes gprof and ld.
|
||||
.PHONY: binutils.tar.gz
|
||||
BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof
|
||||
BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof make-all.com setup.com
|
||||
binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
|
||||
$(MAKE) -f Makefile.in taz TOOL=binutils \
|
||||
SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
|
||||
|
|
Loading…
Reference in a new issue