Include `dbxelf.h' via tm.h (the approved FSF/GNU way) vs. in our MI header.

This commit is contained in:
David E. O'Brien 2001-03-02 03:00:41 +00:00
parent 5064dbba95
commit e7d01c5d0b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=73307

View File

@ -132,13 +132,14 @@ tconfig.h:
echo '#include "gansidecl.h"' > ${.TARGET}
echo '#include "${GCC_ARCH}/xm-${GCC_ARCH}.h"' >> ${.TARGET}
# KEEP THIS IN SYNC with src/gcc/lib/libgcc/Makefile !!
# KEEP THIS IN SYNC with src/gcc/lib/libgcc/Makefile !!
tm.h:
echo '#include "${GCC_ARCH}/${GCC_ARCH}.h"' > ${.TARGET}
.if ${GCC_ARCH} == "i386"
echo '#include "${GCC_ARCH}/att.h"' >> ${.TARGET}
.endif
echo '#include <freebsd.h>' >> ${.TARGET}
echo '#include "dbxelf.h"' >> ${.TARGET}
.if exists(${GCCDIR}/config/${GCC_ARCH}/elf.h)
echo '#include "${GCC_ARCH}/elf.h"' >> ${.TARGET}
.endif