]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/csu/aarch64/Makefile
Only include object files from .ALLSRC when linking crt1 objects.
[FreeBSD/FreeBSD.git] / lib / csu / aarch64 / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR:H}/common
4
5 SRCS=           crti.S crtn.S
6 OBJS=           ${SRCS:N*.h:R:S/$/.o/g}
7 OBJS+=          Scrt1.o crt1.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} crt1_c.o crt1_s.o gcrt1_c.o Scrt1_c.o
21 CLEANFILES+=    crtbrand.o ignore_init_note.o
22
23 gcrt1_c.o: crt1_c.c
24         ${CC} ${CFLAGS} -DGCRT -c -o ${.TARGET} ${.CURDIR}/crt1_c.c
25
26 gcrt1.o: gcrt1_c.o crt1_s.o crtbrand.o ignore_init_note.o
27         ${LD} ${_LDFLAGS} -o ${.TARGET} -r ${.ALLSRC:M*.o}
28
29 crt1.o: crt1_c.o crt1_s.o crtbrand.o ignore_init_note.o
30         ${LD} ${_LDFLAGS} -o ${.TARGET} -r ${.ALLSRC:M*.o}
31
32 Scrt1_c.o: crt1_c.c
33         ${CC} ${CFLAGS} -fPIC -DPIC -c -o ${.TARGET} ${.CURDIR}/crt1_c.c
34
35 Scrt1.o: Scrt1_c.o crt1_s.o crtbrand.o ignore_init_note.o
36         ${LD} ${_LDFLAGS} -o ${.TARGET} -r ${.ALLSRC:M*.o}
37
38 .include <bsd.lib.mk>