diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-09-14 14:50:34 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-09-14 14:50:34 +0000 |
commit | c0430cac123fcbb68fa892071bf7c318a81e47e5 (patch) | |
tree | 8b7c82c63a1c9c2ac6284cfda1710bf790066dda /sys/arch | |
parent | e6eac19d50a42f564082d65f93998f5ead45575a (diff) |
Don't just use 'size'. Use SIZE and make it settable.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/alpha/conf/Makefile.alpha | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/arch/alpha/conf/Makefile.alpha b/sys/arch/alpha/conf/Makefile.alpha index a9655b889ee..0ce37716945 100644 --- a/sys/arch/alpha/conf/Makefile.alpha +++ b/sys/arch/alpha/conf/Makefile.alpha @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.alpha,v 1.21 2001/07/15 13:10:46 assar Exp $ +# $OpenBSD: Makefile.alpha,v 1.22 2001/09/14 14:50:33 art Exp $ # $NetBSD: Makefile.alpha,v 1.27 1996/12/01 06:12:25 jonathan Exp $ # Makefile for OpenBSD @@ -13,12 +13,6 @@ # /sys/arch/alpha/conf/Makefile.alpha # after which config should be rerun for all machines of that type. # -# N.B.: NO DEPENDENCIES ON FOLLOWING FLAGS ARE VISIBLE TO MAKEFILE -# IF YOU CHANGE THE DEFINITION OF ANY OF THESE RECOMPILE EVERYTHING -# -# -DTRACE compile in kernel tracing hooks -# -DQUOTA compile in file system quotas - # DEBUG is set to -g if debugging. # PROF is set to -pg if profiling. @@ -29,6 +23,7 @@ LD?= ld MKDEP?= mkdep STRIP?= strip COPTS?= -O2 +SIZE?= size # source tree is located via $S relative to the compilation directory .ifndef S @@ -93,7 +88,7 @@ SYSTEM_DEP= Makefile ${SYSTEM_OBJ} SYSTEM_LD_HEAD= @rm -f $@ SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o -SYSTEM_LD_TAIL= @size $@; chmod 755 $@ +SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ DEBUG?= .if ${DEBUG} == "-g" |