3b08abd277
two variables: TOOLCHAIN_MISSING -- set to "yes" on platforms for which there is no working in-tree toolchain (hppa, ns32k, sh5, x86_64). EXTERNAL_TOOLCHAIN -- if defined by the user, points to the root of an external toolchain (e.g. /usr/local/gnu). This enables the cross-build framework even for TOOLCHAIN_MISSING platforms. If TOOLCHAIN_MISSING is set to "yes", MKGDB, MKBFD, and MKGCC are all unconditionally set to "no", since the bits are not there to build. If EXTERNAL_TOOLCHAIN is set, MKGCC is unconditionally set to "no", since the external toolchain's compiler is not in-sync with the in-tree compiler support components (e.g. libgcc). * Set MACHINE_CPU much earlier in bsd.own.mk, so that more tests in that file can use it.
23 lines
560 B
Makefile
23 lines
560 B
Makefile
# $NetBSD: Makefile,v 1.9 2002/09/17 23:18:27 thorpej Exp $
|
|
|
|
PROG= crunchgen
|
|
SRCS= crunchgen.c crunched_skel.c
|
|
CLEANFILES+= crunched_skel.c
|
|
|
|
crunched_skel.c: mkskel.sh crunched_main.c
|
|
sh ${.ALLSRC} >${.TARGET}
|
|
|
|
.ifndef HOSTPROG
|
|
.include <bsd.prog.mk>
|
|
|
|
# Native tool -- key only off TOOLCHAIN_MISSING
|
|
.if ${TOOLCHAIN_MISSING} != "yes"
|
|
CPPFLAGS+= -DNEW_TOOLCHAIN
|
|
.endif
|
|
.else
|
|
# Host tool -- We can also pay attention to EXTERNAL_TOOLCHAIN.
|
|
.if ${TOOLCHAIN_MISSING} != "yes" || defined(EXTERNAL_TOOLCHAIN)
|
|
CPPFLAGS+= -DNEW_TOOLCHAIN
|
|
.endif
|
|
.endif # ! HOSTPROG
|