diff options
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/conf/Makefile.alpha | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/arch/alpha/conf/Makefile.alpha b/sys/arch/alpha/conf/Makefile.alpha index 0079f644938..3c0f618f402 100644 --- a/sys/arch/alpha/conf/Makefile.alpha +++ b/sys/arch/alpha/conf/Makefile.alpha @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.alpha,v 1.108 2017/09/12 08:23:42 mpi Exp $ +# $OpenBSD: Makefile.alpha,v 1.109 2017/09/28 16:16:34 patrick Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -146,4 +146,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 |