]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/csu/sparc64/Makefile
Upgrade to OpenSSH 7.6p1. This will be followed shortly by 7.7p1.
[FreeBSD/FreeBSD.git] / lib / csu / sparc64 / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR:H}/common
4
5 SRCS=           crt1.c crti.S crtn.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
11 FILES=          ${OBJS}
12 FILESMODE=      ${LIBMODE}
13 FILESOWN=       ${LIBOWN}
14 FILESGRP=       ${LIBGRP}
15 FILESDIR=       ${LIBDIR}
16 # These FILES qualify as libraries for the purpose of LIBRARIES_ONLY.
17 .undef LIBRARIES_ONLY
18
19 CLEANFILES=     ${OBJS}
20
21 gcrt1.o: crt1.c
22         ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC}
23
24 Scrt1.o: crt1.c
25         ${CC} ${CFLAGS} -fPIC -DPIC -c -o Scrt1.o ${.ALLSRC}
26
27 .include <bsd.lib.mk>