mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
96e00b336a
* Makefile.in (top_builddir): Set to `.'. (OUTPUT_OPTION): Removed. (LIBTOOL): New. (LTLIBOBJS): New. (EXTRA_LTOFILES): New. (FLAGS_TO_PASS): Add EXTRA_LTOFILES. (all): Remove stamp-picdir. (LTCOMPILE): New. (.c.lo): New rule. (REQUIRED_LTOFILES): New. (CONFIGURED_LTOFILES): New. ($(TARGETLIB)): Check .libs for PIC object files. Depend on $(REQUIRED_LTOFILES) $(EXTRA_LTOFILES) $(LTLIBOBJS). (stamp-picdir): Completely removed. (maint-missing): Pass $(REQUIRED_LTOFILES) $(CONFIGURED_LTOFILES) instead of (REQUIRED_OFILES) $(CONFIGURED_OFILES) (maint-buildall): Depend on $(REQUIRED_LTOFILES) $(CONFIGURED_LTOFILES). (mostlyclean): Also remove *.lo .libs. Run "make maint-deps". * aclocal.m4: Include ../libtool.m4. * config.table: Don't check --enable-shared. * configure.ac (AC_PROG_LIBTOOL): Add. (AC_PROG_CC_C_O): Removed. (OUTPUT_OPTION): Removed. (NO_MINUS_C_MINUS_O): Removed. (ltpexecute): New substitute. (LIBOBJS): Cleanup. * configure: Regenerated. * maint-tool: Updated for .lo/libtool.
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
# Don't build the shared library for build.
|
|
if [ -n "${with_build_subdir}" ]; then
|
|
enable_shared=no
|
|
fi
|
|
|
|
frag=
|
|
case "${host}" in
|
|
rs6000-ibm-aix3.1 | rs6000-ibm-aix)
|
|
frag=mh-aix ;;
|
|
*-*-cxux7*) frag=mh-cxux7 ;;
|
|
*-*-freebsd2.1.*) frag=mh-fbsd21 ;;
|
|
*-*-freebsd2.2.[012]) frag=mh-fbsd21 ;;
|
|
i370-*-opened*) frag=mh-openedition ;;
|
|
i[34567]86-*-windows*) frag=mh-windows ;;
|
|
esac
|
|
|
|
if [ -n "${frag}" ]; then
|
|
frags=${libiberty_topdir}/libiberty/config/$frag
|
|
else
|
|
frags=
|
|
fi
|
|
|
|
echo "# Warning: this fragment is automatically generated" > temp-frag
|
|
|
|
for frag in ${frags}; do
|
|
if [ -f ${frag} ]; then
|
|
echo "Appending ${frag} to xhost-mkfrag"
|
|
echo "# Following fragment copied from ${frag}" >> temp-frag
|
|
cat ${frag} >> temp-frag
|
|
fi
|
|
done
|
|
|
|
# record if we want to build shared libs.
|
|
if [ "${shared}" = "yes" ]; then
|
|
echo enable_shared = yes >> temp-frag
|
|
else
|
|
echo enable_shared = no >> temp-frag
|
|
fi
|
|
|
|
frag=xhost-mkfrag
|
|
${CONFIG_SHELL-/bin/sh} ${libiberty_topdir}/move-if-change temp-frag xhost-mkfrag
|