diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 1999-04-04 20:47:33 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-04-04 20:47:33 +0000 |
| commit | 3da8ad726047e6c2c7596819df693216b74b8c44 (patch) | |
| tree | a2928a199922bb50e104bfe0e7cbb092b0302038 | |
| parent | 8c1efc3ea6a9534f92ec7d1936a1809da2ecf93b (diff) | |
Notes
| -rw-r--r-- | gnu/lib/libgcc/Makefile | 4 | ||||
| -rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gnu/lib/libgcc/Makefile b/gnu/lib/libgcc/Makefile index 6d7e5ef6dc32..50dbc711fe5c 100644 --- a/gnu/lib/libgcc/Makefile +++ b/gnu/lib/libgcc/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.21 1999/04/04 16:36:29 obrien Exp $ +# $Id: Makefile,v 1.22 1999/04/04 20:41:50 obrien Exp $ # GCCDIR= ${.CURDIR}/../../../contrib/egcs/gcc @@ -89,7 +89,9 @@ tconfig.h: tm.h: echo '#include "${MACHINE_ARCH}/${MACHINE_ARCH}.h"' > ${.TARGET} +.if ${MACHINE_ARCH} == "i386" echo '#include "${MACHINE_ARCH}/att.h"' >> ${.TARGET} +.endif echo '#include "${MACHINE_ARCH}/freebsd.h"' >> ${.TARGET} .if ${MACHINE_ARCH} == "i386" echo '#include "${MACHINE_ARCH}/perform.h"' >> ${.TARGET} diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 62ff8129be3c..1c6df8ec79f9 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.15 1999/04/04 16:36:34 obrien Exp $ +# $Id: Makefile,v 1.16 1999/04/04 20:40:45 obrien Exp $ # # @@ -151,7 +151,9 @@ specs.h: tm.h: echo '#include "${MACHINE_ARCH}/${MACHINE_ARCH}.h"' > ${.TARGET} +.if ${MACHINE_ARCH} == "i386" echo '#include "${MACHINE_ARCH}/att.h"' >> ${.TARGET} +.endif echo '#include "${MACHINE_ARCH}/freebsd.h"' >> ${.TARGET} .if ${MACHINE_ARCH} == "i386" echo '#include "${MACHINE_ARCH}/perform.h"' >> ${.TARGET} |
