summaryrefslogtreecommitdiffstats
path: root/lib/csu/i386/Makefile
diff options
context:
space:
mode:
authorwosch <wosch@FreeBSD.org>1996-05-07 23:19:49 +0000
committerwosch <wosch@FreeBSD.org>1996-05-07 23:19:49 +0000
commit9f795376b3921c04e5abe4bc29b1905e78ae2db2 (patch)
tree5618f6a0a4a19c1125bc494850591fa1ee21df48 /lib/csu/i386/Makefile
parent25e7738786079b0070d3ddbd5a6a9fb2279e5c9a (diff)
downloadFreeBSD-src-9f795376b3921c04e5abe4bc29b1905e78ae2db2.zip
FreeBSD-src-9f795376b3921c04e5abe4bc29b1905e78ae2db2.tar.gz
``mv'' -> ``mv -f''
``rm'' -> ``rm -f'' so mv/rm may not ask for confirmation if you are not root
Diffstat (limited to 'lib/csu/i386/Makefile')
-rw-r--r--lib/csu/i386/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile
index 4f665ca..fb74e6b 100644
--- a/lib/csu/i386/Makefile
+++ b/lib/csu/i386/Makefile
@@ -1,5 +1,5 @@
# from: @(#)Makefile 5.6 (Berkeley) 5/22/91
-# $Id: Makefile,v 1.22 1995/10/29 09:49:18 phk Exp $
+# $Id: Makefile,v 1.23 1995/11/02 12:42:41 ache Exp $
CFLAGS+= -DLIBC_SCCS -fno-omit-frame-pointer
OBJS= crt0.o c++rt0.o gcrt0.o scrt0.o sgcrt0.o
@@ -14,12 +14,12 @@ all: ${OBJS}
crt0.o: crt0.c
${CC} ${CFLAGS} -c -DCRT0 -DDYNAMIC ${.CURDIR}/crt0.c -o ${.TARGET}
${LD} -x -r ${.TARGET}
- mv a.out ${.TARGET}
+ mv -f a.out ${.TARGET}
c++rt0.o: c++rt0.c
${CC} ${CFLAGS} -fpic -c ${.CURDIR}/c++rt0.c
@${LD} -x -r ${.TARGET}
- @mv a.out ${.TARGET}
+ @mv -f a.out ${.TARGET}
#
# gcrt0.o doesn't really depend on crt0.o, but this is the easiest way
@@ -28,19 +28,19 @@ c++rt0.o: c++rt0.c
gcrt0.o: crt0.o
${CC} ${CFLAGS} -c -DMCRT0 -DDYNAMIC ${.CURDIR}/crt0.c -o ${.TARGET}
${LD} -x -r ${.TARGET}
- mv a.out ${.TARGET}
+ mv -f a.out ${.TARGET}
# dependencies fudged as for gcrt0.o
scrt0.o: crt0.o
${CC} ${CFLAGS} -c -DCRT0 ${.CURDIR}/crt0.c -o ${.TARGET}
${LD} -x -r ${.TARGET}
- mv a.out ${.TARGET}
+ mv -f a.out ${.TARGET}
# dependencies fudged as for gcrt0.o
sgcrt0.o: scrt0.o
${CC} ${CFLAGS} -c -DMCRT0 ${.CURDIR}/crt0.c -o ${.TARGET}
${LD} -x -r ${.TARGET}
- mv a.out ${.TARGET}
+ mv -f a.out ${.TARGET}
beforeinstall:
cmp -s ${.CURDIR}/dlfcn.h ${DESTDIR}/usr/include/dlfcn.h || \
OpenPOWER on IntegriCloud