protect against multiple inclusion, make HEAP_LIMIT define libsa-specific

This commit is contained in:
cgd 1997-02-16 21:27:06 +00:00
parent 72a6422a5e
commit 90466a7b42
1 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,7 @@
# $NetBSD: Makefile.inc,v 1.5 1997/01/24 01:46:46 cgd Exp $
# $NetBSD: Makefile.inc,v 1.6 1997/02/16 21:27:06 cgd Exp $
.ifndef __INCLUDED_STAND_MAKEFILE_INC
__INCLUDED_STAND_MAKEFILE_INC=
.include <bsd.own.mk> # for ELF_TOOLCHAIN definition
@ -14,8 +17,11 @@ HEAP_LIMIT= 20040000 # "Region 1 start" + 256k
CPPFLAGS+= -DPRIMARY_LOAD_ADDRESS="0x${PRIMARY_LOAD_ADDRESS}"
CPPFLAGS+= -DSECONDARY_LOAD_ADDRESS="0x${SECONDARY_LOAD_ADDRESS}"
CPPFLAGS+= -DHEAP_LIMIT="0x${HEAP_LIMIT}"
SAMISCCPPFLAGS+= -DHEAP_LIMIT="0x${HEAP_LIMIT}"
.if !defined(ELF_TOOLCHAIN)
CPPFLAGS+= -DECOFF_COMPAT
.endif
.endif