summaryrefslogtreecommitdiffstats
path: root/lib/csu/i386/Makefile
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1996-08-30 01:41:52 +0000
committerpeter <peter@FreeBSD.org>1996-08-30 01:41:52 +0000
commitd24d89b92874bfa9ea3e94c11f64907b456a01f8 (patch)
treed4529bfd07a03773d29c8f0d47603385d0c3ed22 /lib/csu/i386/Makefile
parent82379f096b6ed74e2e1437fe48d2323270c03b8b (diff)
downloadFreeBSD-src-d24d89b92874bfa9ea3e94c11f64907b456a01f8.zip
FreeBSD-src-d24d89b92874bfa9ea3e94c11f64907b456a01f8.tar.gz
cmp -s || install -c --> install -C
Diffstat (limited to 'lib/csu/i386/Makefile')
-rw-r--r--lib/csu/i386/Makefile12
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile
index fb74e6b..edb43f5 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.23 1995/11/02 12:42:41 ache Exp $
+# $Id: Makefile,v 1.24 1996/05/07 23:16:08 wosch Exp $
CFLAGS+= -DLIBC_SCCS -fno-omit-frame-pointer
OBJS= crt0.o c++rt0.o gcrt0.o scrt0.o sgcrt0.o
@@ -43,15 +43,13 @@ sgcrt0.o: scrt0.o
mv -f a.out ${.TARGET}
beforeinstall:
- cmp -s ${.CURDIR}/dlfcn.h ${DESTDIR}/usr/include/dlfcn.h || \
- ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
- ${.CURDIR}/dlfcn.h ${DESTDIR}/usr/include
+ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/dlfcn.h \
+ ${DESTDIR}/usr/include
realinstall:
.for i in ${OBJS}
- cmp -s $i ${DESTDIR}/usr/lib/$i || \
- ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
- $i ${DESTDIR}/usr/lib
+ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i \
+ ${DESTDIR}/usr/lib
.endfor
depend: .depend
OpenPOWER on IntegriCloud