c11ba5f711
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.
17 lines
396 B
Makefile
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
|
|
|