summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1995-01-07 23:21:41 +0000
committermycroft <mycroft@NetBSD.org>1995-01-07 23:21:41 +0000
commitfb7161aa7ec3cfd64a0e4efebd0807094a7c5920 (patch)
tree50b7db713969295f5e733f6aa7fd1bb81c55fdc6
parent3dbc1e9443defeff758c4aff0bb31014c0d00226 (diff)
Use ${COMPILE.S}, not ${CPP} directly.
-rw-r--r--lib/csu/mips/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/csu/mips/Makefile b/lib/csu/mips/Makefile
index 1d059038609..2421bb4f5e8 100644
--- a/lib/csu/mips/Makefile
+++ b/lib/csu/mips/Makefile
@@ -1,5 +1,5 @@
# from: @(#)Makefile 8.1 (Berkeley) 6/1/93
-# $Id: Makefile,v 1.2 1994/12/16 10:03:39 mycroft Exp $
+# $Id: Makefile,v 1.3 1995/01/07 23:21:41 mycroft Exp $
CFLAGS= -DLIBC_SCCS
OBJS= crt0.o gcrt0.o
@@ -8,18 +8,18 @@ CLEANFILES+= core a.out
all: ${OBJS}
crt0.o: crt0.S
- ${CPP} -DCRT0 ${.ALLSRC} | ${AS} -o $@
- @${LD} -x -r ${.TARGET}
- @mv a.out ${.TARGET}
+ ${COMPILE.S} -DCRT0 ${.ALLSRC}
+ ${LD} -x -r ${.TARGET}
+ mv a.out ${.TARGET}
gcrt0.o: crt0.S
- ${CPP} -DMCRT0 ${.ALLSRC} | ${AS} -o $@
- @${LD} -x -r ${.TARGET}
- @mv a.out ${.TARGET}
+ ${COMPILE.S} -DMCRT0 ${.ALLSRC}
+ ${LD} -x -r ${.TARGET}
+ mv a.out ${.TARGET}
install:
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${OBJS} \
- ${DESTDIR}/usr/lib
+ ${DESTDIR}/usr/lib
depend lint tags: