]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/csu/powerpc/Makefile
MFC r339738, r339744, r339770, r339773, r339864-r339866, r339907-r339908, r339912...
[FreeBSD/FreeBSD.git] / lib / csu / powerpc / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR:H}/common
4
5 SRCS=           crt1.c crti.S crtn.S crtsavres.S
6 OBJS=           ${SRCS:N*.h:R:S/$/.o/g}
7 OBJS+=          Scrt1.o gcrt1.o
8 CFLAGS+=        -I${.CURDIR:H}/common \
9                 -I${SRCTOP}/lib/libc/include
10 CFLAGS+=        -DCRT_IRELOC_SUPPRESS
11
12 FILES=          ${OBJS}
13 FILESMODE=      ${LIBMODE}
14 FILESOWN=       ${LIBOWN}
15 FILESGRP=       ${LIBGRP}
16 FILESDIR=       ${LIBDIR}
17 # These FILES qualify as libraries for the purpose of LIBRARIES_ONLY.
18 .undef LIBRARIES_ONLY
19
20 CLEANFILES=     ${OBJS}
21 CLEANFILES+=    crt1.s gcrt1.s Scrt1.s
22
23 # See the comment in lib/csu/common/crtbrand.c for the reason crt1.c is not
24 # directly compiled to .o files.
25
26 crt1.s: crt1.c
27         ${CC} ${CFLAGS} -S -o ${.TARGET} ${.CURDIR}/crt1.c
28         sed ${SED_FIX_NOTE} ${.TARGET}
29
30 crt1.o: crt1.s
31         ${CC} ${CFLAGS:N-g} ${ACFLAGS} -c -o ${.TARGET} crt1.s
32
33 gcrt1.s: crt1.c
34         ${CC} ${CFLAGS} -DGCRT -S -o ${.TARGET} ${.CURDIR}/crt1.c
35         sed ${SED_FIX_NOTE} ${.TARGET}
36
37 gcrt1.o: gcrt1.s
38         ${CC} ${CFLAGS:N-g} ${ACFLAGS} -c -o ${.TARGET} gcrt1.s
39
40 Scrt1.s: crt1.c
41         ${CC} ${CFLAGS} -fPIC -DPIC -S -o ${.TARGET} ${.CURDIR}/crt1.c
42         sed ${SED_FIX_NOTE} ${.TARGET}
43
44 Scrt1.o: Scrt1.s
45         ${CC} ${CFLAGS:N-g} ${ACFLAGS} -c -o ${.TARGET} Scrt1.s
46
47 .include <bsd.lib.mk>