diff options
author | 2009-03-23 18:51:51 +0000 | |
---|---|---|
committer | 2009-03-23 18:51:51 +0000 | |
commit | 38bd79409065bcf862823a994b9fd7ccbf204be3 (patch) | |
tree | 64870a6ce6fb6db1d25981d8f6e52b915ad26fad | |
parent | kill SIZE_LEFT() macro, no longer used (diff) | |
download | wireguard-openbsd-38bd79409065bcf862823a994b9fd7ccbf204be3.tar.xz wireguard-openbsd-38bd79409065bcf862823a994b9fd7ccbf204be3.zip |
Add missing dependency generation for assym.h (...the lack of which
made testers of art's affinity diff go insane)
ok krw@ miod@
-rw-r--r-- | sys/arch/amd64/conf/Makefile.amd64 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/amd64/conf/Makefile.amd64 b/sys/arch/amd64/conf/Makefile.amd64 index cf4b7c6ff8f..9f08dea2ce9 100644 --- a/sys/arch/amd64/conf/Makefile.amd64 +++ b/sys/arch/amd64/conf/Makefile.amd64 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.amd64,v 1.15 2007/11/30 07:52:06 miod Exp $ +# $OpenBSD: Makefile.amd64,v 1.16 2009/03/23 18:51:51 guenther Exp $ # Makefile for OpenBSD # @@ -155,6 +155,11 @@ depend:: .depend ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${AFILES} ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} ${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES} + sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \ + ${CPPFLAGS} ${PARAM} < ${AMD64}/amd64/genassym.cf + @sed -e 's/.*\.o: /assym.h: /' -e 's/\/tmp\/genassym_c.[^ ]*//' \ + < assym.dep >> .depend + @rm -f assym.dep # depend on root or device configuration |