From 2fffd478163c844f5ccc053537b7b50913f93782 Mon Sep 17 00:00:00 2001 From: obrien Date: Sat, 15 Dec 2001 21:36:30 +0000 Subject: The instructions on doing something with src/lib/csu/sparc64. --- lib/csu/sparc64/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 lib/csu/sparc64/Makefile diff --git a/lib/csu/sparc64/Makefile b/lib/csu/sparc64/Makefile new file mode 100644 index 0000000..a2d6890 --- /dev/null +++ b/lib/csu/sparc64/Makefile @@ -0,0 +1,25 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../common + +SRCS= crt1.c crtbegin.c crtend.c +OBJS= crt1.o crtbegin.o crtend.o +OBJS+= gcrt1.o +SOBJS= crtbegin.So crtend.So +NOMAN= true +NOPIC= true +NOPROFILE= true +INTERNALLIB= true + +all: ${OBJS} ${SOBJS} + +gcrt1.o: crt1.c + ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC} + +realinstall: +.for file in ${OBJS} ${SOBJS} + ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/} +.endfor + +.include -- cgit v1.1