aboutsummaryrefslogtreecommitdiff
path: root/sys/conf/Makefile.alpha
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2001-11-11 05:26:14 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2001-11-11 05:26:14 +0000
commit7b9cc199343a0be02be736310b22dbde5f033621 (patch)
tree256b74b1b8ad13f09bd7dd0cb6a96e5370a79d42 /sys/conf/Makefile.alpha
parentac8e56a7f941dd3a327bfebbcc6568d05d184989 (diff)
downloadsrc-7b9cc199343a0be02be736310b22dbde5f033621.tar.gz
src-7b9cc199343a0be02be736310b22dbde5f033621.zip
Append to SYSTEM_OBJS and CLEAN before including kern.post.mk.
Any modifications to SYSTEM_OBJS after including kern.post.mk will not make it to SYSTEM_DEP and consequently any dependency rules. This caused __{div|rem}* to not be built...
Notes
Notes: svn path=/head/; revision=86251
Diffstat (limited to 'sys/conf/Makefile.alpha')
-rw-r--r--sys/conf/Makefile.alpha4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/Makefile.alpha b/sys/conf/Makefile.alpha
index 39cc17aec99d..fa7d863450c0 100644
--- a/sys/conf/Makefile.alpha
+++ b/sys/conf/Makefile.alpha
@@ -45,13 +45,13 @@ 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
CLEAN+= __remqu.S __remq.S __remlu.S __reml.S
+.include "$S/conf/kern.post.mk"
+
__divqu.S: $S/$M/$M/divrem.m4
@echo 'building ${.TARGET} from ${.ALLSRC}'
@(echo "define(NAME,\`__divqu')define(OP,\`div')define(S,\`false')"; \