diff options
Diffstat (limited to 'sys/arch/i386/conf/Makefile.i386')
-rw-r--r-- | sys/arch/i386/conf/Makefile.i386 | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/arch/i386/conf/Makefile.i386 b/sys/arch/i386/conf/Makefile.i386 index adc890e3a9c..ac2cf80aa34 100644 --- a/sys/arch/i386/conf/Makefile.i386 +++ b/sys/arch/i386/conf/Makefile.i386 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.i386,v 1.118 2017/09/12 08:23:42 mpi Exp $ +# $OpenBSD: Makefile.i386,v 1.119 2017/09/28 16:16:34 patrick Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -155,4 +155,15 @@ newinstall: install: update-link newinstall +# pull in the dependency information +.ifnmake clean +. for o in ${SYSTEM_OBJ:Ngap.o} assym.h +. if exists(${o:R}.d) +. include "${o:R}.d" +. elif exists($o) + .PHONY: $o +. endif +. endfor +.endif + %RULES |