summaryrefslogtreecommitdiffstats
path: root/sys/conf/Makefile.i386
diff options
context:
space:
mode:
authornate <nate@FreeBSD.org>1993-10-23 06:46:24 +0000
committernate <nate@FreeBSD.org>1993-10-23 06:46:24 +0000
commitd4033edb0b7d5c228df990e60550e437723739a3 (patch)
tree78515092d47c856540ec0cdb5448a49d77e6f767 /sys/conf/Makefile.i386
parent788f37f77073bd042a29e2c5e180928c864b2d89 (diff)
downloadFreeBSD-src-d4033edb0b7d5c228df990e60550e437723739a3.zip
FreeBSD-src-d4033edb0b7d5c228df990e60550e437723739a3.tar.gz
Reverted back to older version of ./genassym, instead of ./genassym.o
since make depend wasn't picking up any new dependencies. However, due to a bug in the old code, the original dependencies weren't being used, so this version is better than the original and the lastest version. (And is more readable as well)
Diffstat (limited to 'sys/conf/Makefile.i386')
-rw-r--r--sys/conf/Makefile.i38614
1 files changed, 8 insertions, 6 deletions
diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386
index 5d66a8e..d833382 100644
--- a/sys/conf/Makefile.i386
+++ b/sys/conf/Makefile.i386
@@ -1,6 +1,6 @@
# Copyright 1990 W. Jolitz
# from: @(#)Makefile.i386 7.1 5/10/91
-# $Id: Makefile.i386,v 1.7 1993/10/08 16:52:44 rgrimes Exp $
+# $Id: Makefile.i386,v 1.8 1993/10/14 17:09:54 rgrimes Exp $
#
# Makefile for FreeBSD
#
@@ -65,7 +65,7 @@ PROFILE_C= ${CC} -S -c ${CFLAGS} $< ; \
clean:
rm -f eddep *386bsd tags *.o locore.i [a-uw-z]*.s \
- errs linterrs makelinks
+ errs linterrs makelinks genassym
lint: /tmp param.c
@lint -hbxn -I. -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
@@ -99,12 +99,14 @@ assym.s: Makefile
# depends on KDB (cons.o also depends on GENERIC)
trap.o cons.o: Makefile
-assym.s: genassym.o
- ./genassym.o >assym.s
+assym.s: genassym $S/sys/param.h machine/pte.h \
+ $S/sys/buf.h $S/sys/vmmeter.h \
+ $S/sys/proc.h $S/sys/msgbuf.h machine/vmparam.h
+ ./genassym >assym.s
-genassym.o:
+genassym:
${CC} ${INCLUDES} -DKERNEL ${IDENT} ${PARAM} \
- ${I386}/i386/genassym.c -o genassym.o
+ ${I386}/i386/genassym.c -o genassym
depend: assym.s param.c
sh /usr/bin/mkdep -DLOAD_ADDRESS=0x${LOAD_ADDRESS} ${COPTS} ${CFILES} ioconf.c param.c ${I386}/i386/conf.c
OpenPOWER on IntegriCloud