diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 1999-04-04 20:41:50 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-04-04 20:41:50 +0000 |
| commit | 8c1efc3ea6a9534f92ec7d1936a1809da2ecf93b (patch) | |
| tree | 6297d12ee2f3fb42767658a8c01d409115a31aa8 /gnu/lib/libgcc/Makefile | |
| parent | 962ae20e3c6126e3aad9f7aa5b8f722292ec5908 (diff) | |
Notes
Diffstat (limited to 'gnu/lib/libgcc/Makefile')
| -rw-r--r-- | gnu/lib/libgcc/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/lib/libgcc/Makefile b/gnu/lib/libgcc/Makefile index 01e9c624a89a..6d7e5ef6dc32 100644 --- a/gnu/lib/libgcc/Makefile +++ b/gnu/lib/libgcc/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.25 1999/03/14 21:30:05 obrien Exp $ +# $Id: Makefile,v 1.21 1999/04/04 16:36:29 obrien Exp $ # GCCDIR= ${.CURDIR}/../../../contrib/egcs/gcc @@ -91,7 +91,11 @@ tm.h: echo '#include "${MACHINE_ARCH}/${MACHINE_ARCH}.h"' > ${.TARGET} echo '#include "${MACHINE_ARCH}/att.h"' >> ${.TARGET} echo '#include "${MACHINE_ARCH}/freebsd.h"' >> ${.TARGET} +.if ${MACHINE_ARCH} == "i386" echo '#include "${MACHINE_ARCH}/perform.h"' >> ${.TARGET} +.elif ${MACHINE_ARCH} == "alpha" + echo '#include "${MACHINE_ARCH}/freebsd-elf.h"' >> ${.TARGET} +.endif ${OBJS}: ${COMMONHDRS} |
