summaryrefslogtreecommitdiffstats
path: root/sys/conf/Makefile.powerpc
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1999-12-26 17:07:15 +0000
committerbde <bde@FreeBSD.org>1999-12-26 17:07:15 +0000
commitefb5cc9fac4229f3675152c1881072b007cf25a1 (patch)
treef2962cdf790737aa346401ac51c54ef8f185386b /sys/conf/Makefile.powerpc
parentd3744281528c0ac87200e3769f5bcaecf04138aa (diff)
downloadFreeBSD-src-efb5cc9fac4229f3675152c1881072b007cf25a1.zip
FreeBSD-src-efb5cc9fac4229f3675152c1881072b007cf25a1.tar.gz
Fixed stripping of aout debugging kernels.
Fixed some style bugs (always use precisely 1 space after `:' in dependency specifications). Removed bogus dependency of ${FULLKERNEL} on ${BEFORE_DEPEND}.
Diffstat (limited to 'sys/conf/Makefile.powerpc')
-rw-r--r--sys/conf/Makefile.powerpc8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc
index 4086ac7..e683d32 100644
--- a/sys/conf/Makefile.powerpc
+++ b/sys/conf/Makefile.powerpc
@@ -120,22 +120,22 @@ SYSTEM_DEP+= $S/i386/conf/kernel.script
%CLEAN
-all: ${KERNEL}
+all: ${KERNEL}
.if !defined(DEBUG)
FULLKERNEL= ${KERNEL}
.else
FULLKERNEL= ${KERNEL}.debug
-${KERNEL}: ${FULLKERNEL}
+${KERNEL}: ${FULLKERNEL}
.if ${KERNFORMAT} == "elf"
objcopy --strip-debug ${FULLKERNEL} ${KERNEL}
.else
cp ${FULLKERNEL} ${KERNEL}
- strip -d ${KERNEL}
+ strip -aout -d ${KERNEL}
.endif
.endif
-${FULLKERNEL}: ${BEFORE_DEPEND} ${SYSTEM_DEP} vers.o
+${FULLKERNEL}: ${SYSTEM_DEP} vers.o
@rm -f ${.TARGET}
@echo linking ${.TARGET}
${SYSTEM_LD}
OpenPOWER on IntegriCloud