Makefile revision 60734
1#
2# $FreeBSD: head/lib/csu/amd64/Makefile 60734 2000-05-20 17:47:29Z jdp $
3#
4
5SRCS=		crt1.c crtbegin.c crtend.c crti.S crtn.S
6OBJS=		${SRCS:N*.h:R:S/$/.o/g}
7OBJS+=		gcrt1.o
8SOBJS=		crtbegin.So crtend.So
9CFLAGS+=	-elf -Wall -fkeep-inline-functions
10LDFLAGS+=	-elf
11NOMAN=		true
12NOPIC=		true
13NOPROFILE=	true
14INTERNALLIB=	true
15
16.PATH:		${.CURDIR}/../common
17
18all: ${OBJS} ${SOBJS}
19
20gcrt1.o:	crt1.c
21	${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c
22
23realinstall:
24.for file in ${OBJS} ${SOBJS}
25	${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
26	    ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/}
27.endfor
28
29.include <bsd.lib.mk>
30