Makefile revision 50476
1#
2# $FreeBSD: head/lib/csu/i386-elf/Makefile 50476 1999-08-28 00:22:10Z peter $
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
16all: ${OBJS} ${SOBJS}
17
18gcrt1.o:	crt1.c
19	${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c
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