Update for new FS code (vnode_if.*)

This commit is contained in:
gwr 1994-06-13 15:54:16 +00:00
parent d87a71b8c8
commit 99b3d9f091

View File

@ -1,4 +1,4 @@
# $Id: Makefile.sun3,v 1.18 1994/05/13 15:07:08 gwr Exp $
# $Id: Makefile.sun3,v 1.19 1994/06/13 15:54:16 gwr Exp $
# Makefile for 4.4 BSD
#
# This makefile is constructed from a machine description:
@ -20,7 +20,9 @@
# For cross development, uncomment XINC, and
# copy a few things from NetBSD:/usr/include
# into compile/xinc : nlist.h setjmp.h stab.h
# XINC = -nostdinc -I../xinc
XINC = -nostdinc -I../xinc
# Uncomment this if you do not have GNU awk (just plain nawk)
AWK = nawk
# DEBUG is set to -g by config if debugging is requested (config -g).
# DEBUG=-g XXX
@ -73,9 +75,9 @@ DEBUG?=
.if ${DEBUG} == "-g"
LDX=-X
.else
LDX=-x
LDX=-S
.endif
SYSTEM_OBJ= locore.o ${OBJS} param.o ioconf.o
SYSTEM_OBJ= locore.o ${OBJS} param.o ioconf.o vnode_if.o
#SYSTEM_DEP= Makefile symbols.sort ${SYSTEM_OBJ}
SYSTEM_DEP= Makefile ${SYSTEM_OBJ}
SYSTEM_LD_HEAD= @echo loading $@; rm -f $@
@ -144,7 +146,7 @@ genassym:
${CC} ${INCLUDES} ${IDENT} ${PARAM} -Dmc68020 -Dsun3 -o genassym \
${SUN3}/sun3/genassym.c
depend: assym.s param.c
depend: assym.s param.c vnode_if.h
mkdep ${COPTS} ${CFILES} ioconf.c param.c
mkdep -a -p ${INCLUDES} ${IDENT} ${PARAM} ${SUN3}/sun3/genassym.c
@ -173,4 +175,7 @@ vers.o: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
sh $S/conf/newvers.sh ${KERN_IDENT} ${IDENT}
${CC} ${CFLAGS} -c vers.c
vnode_if.c vnode_if.h : $S/kern/vnode_if.sh $S/kern/vnode_if.src
AWK=${AWK} sh $S/kern/vnode_if.sh $S/kern/vnode_if.src
%RULES