Don't require gcc/config/${MACHINE_ARCH}/xm-freebsd.h when we already know

the contents of it.  Instead create it, so all arch's are consistent.
This commit is contained in:
David E. O'Brien 1999-04-08 08:19:28 +00:00
parent 4ebe777123
commit 339895b8a0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45463

View File

@ -1,5 +1,5 @@
# #
# $Id: Makefile,v 1.22 1999/04/04 20:41:50 obrien Exp $ # $Id: Makefile,v 1.23 1999/04/04 20:47:33 obrien Exp $
# #
GCCDIR= ${.CURDIR}/../../../contrib/egcs/gcc GCCDIR= ${.CURDIR}/../../../contrib/egcs/gcc
@ -82,7 +82,8 @@ NEW2POBJS= ${NEW2FUNCS:S/$/.po/}
OBJS= ${LIB1OBJS} ${LIB2OBJS} ${NEW1OBJS} ${NEW2OBJS} OBJS= ${LIB1OBJS} ${LIB2OBJS} ${NEW1OBJS} ${NEW2OBJS}
config.h: config.h:
echo '#include "${MACHINE_ARCH}/xm-freebsd.h"' > ${.TARGET} echo '#include <${MACHINE_ARCH}/xm-${MACHINE_ARCH}.h>' > ${.TARGET}
echo '#include <xm-freebsd.h>' >> ${.TARGET}
tconfig.h: tconfig.h:
echo '#include "${MACHINE_ARCH}/xm-${MACHINE_ARCH}.h"' > ${.TARGET} echo '#include "${MACHINE_ARCH}/xm-${MACHINE_ARCH}.h"' > ${.TARGET}