]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - lib/csu/i386-elf/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / lib / csu / i386-elf / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../common
4
5 SRCS=           crt1.c crti.S crtn.S
6 FILES=          ${SRCS:N*.h:R:S/$/.o/g} gcrt1.o
7 FILESOWN=       ${LIBOWN}
8 FILESGRP=       ${LIBGRP}
9 FILESMODE=      ${LIBMODE}
10 FILESDIR=       ${LIBDIR}
11 WARNS?=         6
12 CFLAGS+=        -I${.CURDIR}/../common \
13                 -I${.CURDIR}/../../libc/include
14 CLEANFILES=     ${FILES}
15
16 gcrt1.o: crt1.c
17         ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c
18
19 .include <bsd.prog.mk>