NetBSD/sys/arch/alpha/stand/Makefile.inc
cgd c11ba5f711 key on ELF_TOOLCHAIN being defined (presumably in /etc/mk.conf)
to signal that the build is happening on a machine with an ELF
toolchain.  This is temporary, until a better toolchain-recognition
scheme is worked out.
1996-10-06 18:32:22 +00:00

17 lines
396 B
Makefile

# $NetBSD: Makefile.inc,v 1.3 1996/10/06 18:32:22 cgd Exp $
.include <bsd.own.mk> # for ELF_TOOLCHAIN definition
BINDIR= /usr/mdec
PRIMARY_LOAD_ADDRESS= 20000000
SECONDARY_LOAD_ADDRESS= 20020000
CPPFLAGS+= -DPRIMARY_LOAD_ADDRESS="0x${PRIMARY_LOAD_ADDRESS}"
CPPFLAGS+= -DSECONDARY_LOAD_ADDRESS="0x${SECONDARY_LOAD_ADDRESS}"
.if !defined(ELF_TOOLCHAIN)
CPPFLAGS+= -DECOFF_COMPAT
.endif