make load address settable via LOADADDRESS make option

This commit is contained in:
cgd 1997-01-21 23:37:10 +00:00
parent a9142bd25b
commit 4a81474aaf
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.alpha,v 1.28 1996/12/22 08:33:19 cgd Exp $
# $NetBSD: Makefile.alpha,v 1.29 1997/01/21 23:37:10 cgd Exp $
# Makefile for NetBSD
#
@ -40,7 +40,8 @@ CWARNFLAGS?= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \
-Wno-format
CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} -mno-fp-regs
AFLAGS= -traditional -D_LOCORE
LINKFLAGS= -N -Ttext fffffc0000230000 -e __start -G 4
LOADADDRESS?= fffffc0000230000
LINKFLAGS= -N -Ttext ${LOADADDRESS} -e __start -G 4
STRIPFLAGS= -g -X -x
HOSTED_CC= ${CC}