Makefile revision 85595
1# $FreeBSD: head/lib/csu/powerpc/Makefile 85595 2001-10-27 08:32:07Z obrien $
2
3.PATH: ${.CURDIR}/../common
4
5SRCS=		crt1.c crti.S crtn.S
6OBJS=		${SRCS:N*.h:R:S/$/.o/g}
7OBJS+=		gcrt1.o
8CFLAGS+=	-Wall -Wno-unused \
9		-I${.CURDIR}/../common
10NOMAN=		true
11NOPIC=		true
12NOPROFILE=	true
13INTERNALLIB=	true
14
15
16all: ${OBJS} ${SOBJS}
17
18gcrt1.o: crt1.c
19	${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC}
20
21realinstall:
22.for file in ${OBJS} ${SOBJS}
23	${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
24	    ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/}
25.endfor
26
27.include <bsd.lib.mk>
28