diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2017-07-18 16:43:28 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2017-07-18 16:43:28 +0000 |
commit | 173f1a18d177b467033209e42cb342817ccd80fa (patch) | |
tree | 246449f3ae26f2b343f009dacc3eb43e81df3463 /sys/arch/landisk | |
parent | 54ab0cf8f2c35d6b32eba5c56d8a45c3c35d26dc (diff) |
Stop automatically regenerating gap.o (and hence linking a new kernel)
whenever make is issued. Only do this when there are actual source changes
below /sys. This restores the behavior prior to the KARL implementation.
Problem noticed and patiently explained by mpi
implementation with a lot of help from espie
ok mpi, espie, deraadt
Diffstat (limited to 'sys/arch/landisk')
-rw-r--r-- | sys/arch/landisk/conf/Makefile.landisk | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/landisk/conf/Makefile.landisk b/sys/arch/landisk/conf/Makefile.landisk index b3a8dd98dec..c570cb90264 100644 --- a/sys/arch/landisk/conf/Makefile.landisk +++ b/sys/arch/landisk/conf/Makefile.landisk @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.landisk,v 1.71 2017/07/16 16:47:07 visa Exp $ +# $OpenBSD: Makefile.landisk,v 1.72 2017/07/18 16:43:27 tb Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -124,8 +124,10 @@ ld.script: ${_machdir}/conf/ld.script makegap.sh: cp $S/conf/makegap.sh $@ -gap.o: Makefile makegap.sh - LD="${LD}" sh makegap.sh 0xc3c3c3c3 +MAKE_GAP = LD="${LD}" sh makegap.sh 0xc3c3c3c3 + +gap.o: Makefile makegap.sh vers.o + ${MAKE_GAP} vers.o: ${SYSTEM_DEP:Ngap.o} sh $S/conf/newvers.sh @@ -161,7 +163,7 @@ install: update-link newinstall ${SYSTEM_OBJ}: ${DB_STRUCTINFO} .endif .ifnmake clean -. for o in ${SYSTEM_OBJ} assym.h ${DB_STRUCTINFO} +. for o in ${SYSTEM_OBJ:Ngap.o} assym.h ${DB_STRUCTINFO} . if exists(${o:R}.d) . include "${o:R}.d" . elif exists($o) |