summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>2001-03-24 18:40:22 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>2001-03-24 18:40:22 +0000
commit95a24cf4221ac4471d6e3085a10153f4a4b8d8db (patch)
tree963f44fbdb71e3756ac463c0fa58a75a15c7985e
parent68a8441ee98761506335b685cd9f207f4801fa1b (diff)
Use "realinstall" to allow the framework to do other work if needed;
path of least surprise. Ok millert@
-rw-r--r--lib/csu/alpha/Makefile4
-rw-r--r--lib/csu/c++/Makefile4
-rw-r--r--lib/csu/i386/Makefile4
-rw-r--r--lib/csu/m68k/Makefile4
-rw-r--r--lib/csu/mips/Makefile4
-rw-r--r--lib/csu/mvme88k/Makefile4
-rw-r--r--lib/csu/ns32k/Makefile4
-rw-r--r--lib/csu/powerpc/Makefile2
-rw-r--r--lib/csu/sparc/Makefile4
-rw-r--r--lib/csu/vax/Makefile4
10 files changed, 19 insertions, 19 deletions
diff --git a/lib/csu/alpha/Makefile b/lib/csu/alpha/Makefile
index c6b90996014..ff9b1da8be2 100644
--- a/lib/csu/alpha/Makefile
+++ b/lib/csu/alpha/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.10 2001/02/03 22:48:36 art Exp $
+# $OpenBSD: Makefile,v 1.11 2001/03/24 18:40:20 tholo Exp $
# $NetBSD: Makefile,v 1.6 1996/10/18 05:27:38 thorpej Exp $
CFLAGS+= -DLIBC_SCCS -DPIC -DELFSIZE=64
@@ -44,7 +44,7 @@ crtendS.o: crtend.c
@${LD} -x -r -o ${.TARGET} ${.TARGET}.o
@rm -f ${.TARGET}.o
-install:
+realinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
diff --git a/lib/csu/c++/Makefile b/lib/csu/c++/Makefile
index 36b5dbdb07e..ef92d00504a 100644
--- a/lib/csu/c++/Makefile
+++ b/lib/csu/c++/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.6 1998/09/15 11:01:51 pefo Exp $
+# $OpenBSD: Makefile,v 1.7 2001/03/24 18:40:20 tholo Exp $
.include <bsd.own.mk>
@@ -16,7 +16,7 @@ c++rt0.o: c++rt0.c
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
-install:
+realinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
diff --git a/lib/csu/i386/Makefile b/lib/csu/i386/Makefile
index 68c29c4ac23..0682fb99a71 100644
--- a/lib/csu/i386/Makefile
+++ b/lib/csu/i386/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.5 1999/08/20 14:11:34 niklas Exp $
+# $OpenBSD: Makefile,v 1.6 2001/03/24 18:40:20 tholo Exp $
# from: @(#)Makefile 5.5 (Berkeley) 5/21/91
CFLAGS+= -fno-omit-frame-pointer -DLIBC_SCCS -I${.CURDIR}/..
@@ -25,7 +25,7 @@ scrt0.o: ${SRCS}
@${LD} -x -r ${.TARGET}.o -o ${.TARGET}
@rm -f ${.TARGET}.o
-install:
+realinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
diff --git a/lib/csu/m68k/Makefile b/lib/csu/m68k/Makefile
index 3af2e8964ec..7f36634445f 100644
--- a/lib/csu/m68k/Makefile
+++ b/lib/csu/m68k/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.4 1999/08/20 14:11:35 niklas Exp $
+# $OpenBSD: Makefile,v 1.5 2001/03/24 18:40:20 tholo Exp $
# from: @(#)Makefile 5.5 (Berkeley) 5/21/91
CFLAGS+= -DLIBC_SCCS -I${.CURDIR}/..
@@ -25,7 +25,7 @@ scrt0.o: ${SRCS}
@${LD} -x -r ${.TARGET}.o -o ${.TARGET}
@rm -f ${.TARGET}.o
-install:
+realinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
diff --git a/lib/csu/mips/Makefile b/lib/csu/mips/Makefile
index caab2a269c8..7778b5caf06 100644
--- a/lib/csu/mips/Makefile
+++ b/lib/csu/mips/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.9 1999/08/20 14:11:35 niklas Exp $
+# $OpenBSD: Makefile,v 1.10 2001/03/24 18:40:20 tholo Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/1/93
CFLAGS+= -DLIBC_SCCS -I${.CURDIR}
@@ -27,7 +27,7 @@ scrt0.o: ${SRCS} ${DEPS}
@${LD} -x -r ${.TARGET}.o -o ${.TARGET}
@rm -f ${.TARGET}.o
-install:
+realinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
diff --git a/lib/csu/mvme88k/Makefile b/lib/csu/mvme88k/Makefile
index cecabd087de..346cdd266de 100644
--- a/lib/csu/mvme88k/Makefile
+++ b/lib/csu/mvme88k/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.3 1999/08/20 14:11:35 niklas Exp $
+# $OpenBSD: Makefile,v 1.4 2001/03/24 18:40:21 tholo Exp $
# from: @(#)Makefile 5.5 (Berkeley) 5/21/91
CFLAGS+= -DLIBC_SCCS -I${.CURDIR}/..
@@ -29,7 +29,7 @@ scrt0.o: ${SRCS}
@${LD} -x -r ${.TARGET}.o -o ${.TARGET}
@rm -f ${.TARGET}.o
-install:
+realinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
diff --git a/lib/csu/ns32k/Makefile b/lib/csu/ns32k/Makefile
index 810bcb3d5a2..9d470afb158 100644
--- a/lib/csu/ns32k/Makefile
+++ b/lib/csu/ns32k/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.4 1999/08/20 14:11:36 niklas Exp $
+# $OpenBSD: Makefile,v 1.5 2001/03/24 18:40:21 tholo Exp $
# from: @(#)Makefile 5.5 (Berkeley) 5/21/91
CFLAGS+= -DLIBC_SCCS -I${.CURDIR}/..
@@ -25,7 +25,7 @@ scrt0.o: ${SRCS}
@${LD} -x -r ${.TARGET}.o -o ${.TARGET}
@rm -f ${.TARGET}.o
-install:
+realinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
diff --git a/lib/csu/powerpc/Makefile b/lib/csu/powerpc/Makefile
index 94560788ba0..25094662210 100644
--- a/lib/csu/powerpc/Makefile
+++ b/lib/csu/powerpc/Makefile
@@ -48,7 +48,7 @@ crtendS.o: crtendS.c
@${LD} -x -r -o ${.TARGET} ${.TARGET}.o
@rm -f ${.TARGET}.o
-install:
+realinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
diff --git a/lib/csu/sparc/Makefile b/lib/csu/sparc/Makefile
index 810bcb3d5a2..9d470afb158 100644
--- a/lib/csu/sparc/Makefile
+++ b/lib/csu/sparc/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.4 1999/08/20 14:11:36 niklas Exp $
+# $OpenBSD: Makefile,v 1.5 2001/03/24 18:40:21 tholo Exp $
# from: @(#)Makefile 5.5 (Berkeley) 5/21/91
CFLAGS+= -DLIBC_SCCS -I${.CURDIR}/..
@@ -25,7 +25,7 @@ scrt0.o: ${SRCS}
@${LD} -x -r ${.TARGET}.o -o ${.TARGET}
@rm -f ${.TARGET}.o
-install:
+realinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib
diff --git a/lib/csu/vax/Makefile b/lib/csu/vax/Makefile
index ca6c3079480..9b788c04d7d 100644
--- a/lib/csu/vax/Makefile
+++ b/lib/csu/vax/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.4 1999/08/20 14:11:36 niklas Exp $
+# $OpenBSD: Makefile,v 1.5 2001/03/24 18:40:21 tholo Exp $
# from: @(#)Makefile 5.6 (Berkeley) 5/22/91
CFLAGS+= -DLIBC_SCCS -I${.CURDIR}/..
@@ -22,7 +22,7 @@ scrt0.o: crt0.c
${LD} -x -r ${.TARGET}
mv a.out ${.TARGET}
-install:
+realinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
${DESTDIR}/usr/lib