diff options
author | imp <imp@FreeBSD.org> | 2001-11-04 20:49:24 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-11-04 20:49:24 +0000 |
commit | 7042915fc3293e8d36347822b638b2f30095de9f (patch) | |
tree | dc2f38d50ecf9e3a4021c4ab0a8ce8e7f77c0f2d /sys/conf | |
parent | 3dd31a7df9d9f134d9590127c4dfd8ed2b5280c9 (diff) | |
download | FreeBSD-src-7042915fc3293e8d36347822b638b2f30095de9f.zip FreeBSD-src-7042915fc3293e8d36347822b638b2f30095de9f.tar.gz |
Move the include before the extra rules so make all the default.
Reported by: peter
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/Makefile.alpha | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/Makefile.alpha b/sys/conf/Makefile.alpha index 67c0f687..39cc17a 100644 --- a/sys/conf/Makefile.alpha +++ b/sys/conf/Makefile.alpha @@ -45,6 +45,8 @@ SYSTEM_LD= @${LD} ${FMT} -Bdynamic -T $S/conf/ldscript.$M \ %CLEAN +.include "$S/conf/kern.post.mk" + SYSTEM_OBJS+= __divqu.o __divq.o __divlu.o __divl.o SYSTEM_OBJS+= __remqu.o __remq.o __remlu.o __reml.o CLEAN+= __divqu.S __divq.S __divlu.S __divl.S @@ -90,6 +92,4 @@ __reml.S: $S/$M/$M/divrem.m4 @(echo "define(NAME,\`__reml')define(OP,\`rem')define(S,\`true')"; \ echo "define(WORDSIZE,32)"; cat ${.ALLSRC}) | m4 > ${.TARGET} -.include "$S/conf/kern.post.mk" - %RULES |