From c29a57703105727c60a09a7723808f127e0df1d4 Mon Sep 17 00:00:00 2001 From: mycroft Date: Sat, 22 Jan 2000 19:37:57 +0000 Subject: [PATCH] Adjust for .mk file changes. --- lib/csu/c++/Makefile | 4 ++-- lib/csu/common_aout/Makefile.inc | 4 ++-- lib/csu/common_elf/Makefile.inc | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/csu/c++/Makefile b/lib/csu/c++/Makefile index 31285d5e0f95..50e7b5081ff2 100644 --- a/lib/csu/c++/Makefile +++ b/lib/csu/c++/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.12 1999/04/03 16:28:50 simonb Exp $ +# $NetBSD: Makefile,v 1.13 2000/01/22 19:39:20 mycroft Exp $ CPPFLAGS+= -DLIBC_SCCS COPTS+= -fpic OBJS= c++rt0.o -all: ${OBJS} +realall: ${OBJS} c++rt0.o: c++rt0.c ${COMPILE.c} ${.ALLSRC} diff --git a/lib/csu/common_aout/Makefile.inc b/lib/csu/common_aout/Makefile.inc index 59031c886a8b..069ff5e13f07 100644 --- a/lib/csu/common_aout/Makefile.inc +++ b/lib/csu/common_aout/Makefile.inc @@ -1,11 +1,11 @@ -# $NetBSD: Makefile.inc,v 1.3 1999/03/19 22:50:20 thorpej Exp $ +# $NetBSD: Makefile.inc,v 1.4 2000/01/22 19:37:57 mycroft Exp $ # from: @(#)Makefile 5.5 (Berkeley) 5/21/91 CPPFLAGS+= -DLIBC_SCCS -I${.CURDIR}/../common_aout OBJS+= crt0.o gcrt0.o scrt0.o SRCS= crt0.c -all: ${OBJS} +realall: ${OBJS} crt0.o: ${SRCS} @echo "${COMPILE.c} -DCRT0 -DDYNAMIC ${.CURDIR}/${SRCS} -o ${.TARGET}" diff --git a/lib/csu/common_elf/Makefile.inc b/lib/csu/common_elf/Makefile.inc index 38b9ff8f0827..0511f70cabbb 100644 --- a/lib/csu/common_elf/Makefile.inc +++ b/lib/csu/common_elf/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.3 1999/04/03 16:39:31 simonb Exp $ +# $NetBSD: Makefile.inc,v 1.4 2000/01/22 19:37:58 mycroft Exp $ .if !defined(ELFSIZE) ELFSIZE=32 @@ -15,7 +15,7 @@ OBJS= crt0.o gcrt0.o crtbegin.o crtend.o CLEANFILES+= core a.out -all: ${OBJS} +realall: ${OBJS} crt0.o: crt0.c @echo "${COMPILE.c} -DCRT0 ${.ALLSRC} -o ${.TARGET}"