diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-24 23:12:15 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-24 23:12:15 +0000 |
commit | 76daf3bd9e1578d85b9de7aaf1e84ca42b14a7d9 (patch) | |
tree | 5f9a2bef4c3f653169212aa9621211c8e2597f50 /sys/arch/sparc64 | |
parent | 635ab50f8c711e7422085af2db271e16970d3a2e (diff) |
Harmonize and complete wrt cross-compilation.
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/conf/Makefile.sparc64 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/sparc64/conf/Makefile.sparc64 b/sys/arch/sparc64/conf/Makefile.sparc64 index 3cbe379aa1c..2f2e1f0381a 100644 --- a/sys/arch/sparc64/conf/Makefile.sparc64 +++ b/sys/arch/sparc64/conf/Makefile.sparc64 @@ -8,7 +8,6 @@ CPP?= cpp LD?= ld MKDEP?= mkdep STRIP?= strip -TOUCH?= touch # source tree is located via $S relative to the compilation directory .ifndef S @@ -28,7 +27,6 @@ CFLAGS= ${DEBUG} -O2 ${CDIAGFLAGS} ${CMACHFLAGS} ${COPTS} AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE -Wa,-Av9a LINKFLAGS= -n -Ttext 01000000 -Tdata 01800000 -e start STRIPFLAGS= -d -TOUCHFLAGS= -f -c HOSTCC= ${CC} HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//} @@ -83,7 +81,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" |