diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/conf/Makefile.i386 | 4 | ||||
-rw-r--r-- | sys/conf/Makefile.powerpc | 4 | ||||
-rw-r--r-- | sys/i386/conf/Makefile.i386 | 4 | ||||
-rw-r--r-- | sys/modules/atapi/Makefile | 4 | ||||
-rw-r--r-- | sys/modules/wcd/Makefile | 4 |
5 files changed, 12 insertions, 8 deletions
diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386 index 132ebbb..9c5ffd6 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.80 1996/05/02 14:19:35 phk Exp $ +# $Id: Makefile.i386,v 1.81 1996/05/02 21:40:50 joerg Exp $ # # Makefile for FreeBSD # @@ -142,7 +142,7 @@ depend: assym.s param.c vnode_if.h ${BEFORE_DEPEND} MKDEP_CPP="${CPP}" ; export MKDEP_CPP ; \ mkdep -a -f .newdep -DLOCORE ${COPTS} ${SFILES} ${SYSTEM_SFILES} rm -f .depend - mv .newdep .depend + mv -f .newdep .depend links: egrep '#if' ${CFILES:Nswapkernel.c} | sed -f $S/conf/defines | \ diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc index 132ebbb..9c5ffd6 100644 --- a/sys/conf/Makefile.powerpc +++ b/sys/conf/Makefile.powerpc @@ -1,6 +1,6 @@ # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.i386,v 1.80 1996/05/02 14:19:35 phk Exp $ +# $Id: Makefile.i386,v 1.81 1996/05/02 21:40:50 joerg Exp $ # # Makefile for FreeBSD # @@ -142,7 +142,7 @@ depend: assym.s param.c vnode_if.h ${BEFORE_DEPEND} MKDEP_CPP="${CPP}" ; export MKDEP_CPP ; \ mkdep -a -f .newdep -DLOCORE ${COPTS} ${SFILES} ${SYSTEM_SFILES} rm -f .depend - mv .newdep .depend + mv -f .newdep .depend links: egrep '#if' ${CFILES:Nswapkernel.c} | sed -f $S/conf/defines | \ diff --git a/sys/i386/conf/Makefile.i386 b/sys/i386/conf/Makefile.i386 index 132ebbb..9c5ffd6 100644 --- a/sys/i386/conf/Makefile.i386 +++ b/sys/i386/conf/Makefile.i386 @@ -1,6 +1,6 @@ # Copyright 1990 W. Jolitz # from: @(#)Makefile.i386 7.1 5/10/91 -# $Id: Makefile.i386,v 1.80 1996/05/02 14:19:35 phk Exp $ +# $Id: Makefile.i386,v 1.81 1996/05/02 21:40:50 joerg Exp $ # # Makefile for FreeBSD # @@ -142,7 +142,7 @@ depend: assym.s param.c vnode_if.h ${BEFORE_DEPEND} MKDEP_CPP="${CPP}" ; export MKDEP_CPP ; \ mkdep -a -f .newdep -DLOCORE ${COPTS} ${SFILES} ${SYSTEM_SFILES} rm -f .depend - mv .newdep .depend + mv -f .newdep .depend links: egrep '#if' ${CFILES:Nswapkernel.c} | sed -f $S/conf/defines | \ diff --git a/sys/modules/atapi/Makefile b/sys/modules/atapi/Makefile index b1d54ff..43125cf 100644 --- a/sys/modules/atapi/Makefile +++ b/sys/modules/atapi/Makefile @@ -1,3 +1,5 @@ +# $Id: $ + .PATH: ${.CURDIR}/../../sys/i386/isa KMOD = atapi_mod SRCS = atapi.c wdc.h #wcd.h @@ -27,6 +29,6 @@ wcd.h: .c.o: -@$(LN) /sys/i386/include machine $(CC) $(CFLAGS) -c $< - -@rm machine + -@rm -f machine .include <bsd.kmod.mk> diff --git a/sys/modules/wcd/Makefile b/sys/modules/wcd/Makefile index 162de4b..d855075 100644 --- a/sys/modules/wcd/Makefile +++ b/sys/modules/wcd/Makefile @@ -1,3 +1,5 @@ +# $Id: $ + .PATH: ${.CURDIR}/../../sys/i386/isa KMOD = wcd_mod SRCS = wcd.c wdc.h wcd.h @@ -23,6 +25,6 @@ wcd.h: .c.o: -@$(LN) /sys/i386/include machine $(CC) $(CFLAGS) -c $< - -@rm machine + -@rm -f machine .include <bsd.kmod.mk> |