Sync with sys/i386/conf/Makefile.i386 revision 1.115.

This commit is contained in:
KATO Takenori 1998-06-25 10:49:49 +00:00
parent e447648cd8
commit e379d366dd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=37152
2 changed files with 14 additions and 10 deletions

View File

@ -3,7 +3,7 @@
# Makefile.i386 -- with config changes.
# Copyright 1990 W. Jolitz
# from: @(#)Makefile.i386 7.1 5/10/91
# $Id: Makefile.pc98,v 1.31 1998/05/25 09:57:34 kato Exp $
# $Id: Makefile.pc98,v 1.32 1998/06/17 16:30:53 kato Exp $
#
# Makefile for FreeBSD
#
@ -112,7 +112,7 @@ SYSTEM_LD_TAIL= @size ${.TARGET} ; chmod 755 ${.TARGET}
clean:
rm -f *.o *.s eddep errs genassym gensetdefs kernel linterrs \
makelinks param.c setdefs.h symbols.exclude symbols.sort tags \
vers.c vnode_if.c vnode_if.h ${CLEAN}
vers.c vnode_if.c vnode_if.h .vnode_if_created ${CLEAN}
#lint: /tmp param.c
# @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
@ -234,10 +234,12 @@ vers.o: $S/sys/param.h ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
sh $S/conf/newvers.sh ${KERN_IDENT} ${IDENT}
${CC} ${CFLAGS} -c vers.c
vnode_if.c: $S/kern/vnode_if.sh $S/kern/vnode_if.src
sh $S/kern/vnode_if.sh $S/kern/vnode_if.src
vnode_if.h: $S/kern/vnode_if.sh $S/kern/vnode_if.src
vnode_if.c vnode_if.h: .vnode_if_created
touch ${.TARGET}
.vnode_if_created: $S/kern/vnode_if.sh $S/kern/vnode_if.src
sh $S/kern/vnode_if.sh $S/kern/vnode_if.src
touch ${.TARGET}
.include <bsd.kern.mk>

View File

@ -3,7 +3,7 @@
# Makefile.i386 -- with config changes.
# Copyright 1990 W. Jolitz
# from: @(#)Makefile.i386 7.1 5/10/91
# $Id: Makefile.pc98,v 1.31 1998/05/25 09:57:34 kato Exp $
# $Id: Makefile.pc98,v 1.32 1998/06/17 16:30:53 kato Exp $
#
# Makefile for FreeBSD
#
@ -112,7 +112,7 @@ SYSTEM_LD_TAIL= @size ${.TARGET} ; chmod 755 ${.TARGET}
clean:
rm -f *.o *.s eddep errs genassym gensetdefs kernel linterrs \
makelinks param.c setdefs.h symbols.exclude symbols.sort tags \
vers.c vnode_if.c vnode_if.h ${CLEAN}
vers.c vnode_if.c vnode_if.h .vnode_if_created ${CLEAN}
#lint: /tmp param.c
# @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
@ -234,10 +234,12 @@ vers.o: $S/sys/param.h ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
sh $S/conf/newvers.sh ${KERN_IDENT} ${IDENT}
${CC} ${CFLAGS} -c vers.c
vnode_if.c: $S/kern/vnode_if.sh $S/kern/vnode_if.src
sh $S/kern/vnode_if.sh $S/kern/vnode_if.src
vnode_if.h: $S/kern/vnode_if.sh $S/kern/vnode_if.src
vnode_if.c vnode_if.h: .vnode_if_created
touch ${.TARGET}
.vnode_if_created: $S/kern/vnode_if.sh $S/kern/vnode_if.src
sh $S/kern/vnode_if.sh $S/kern/vnode_if.src
touch ${.TARGET}
.include <bsd.kern.mk>