Deleted Added
sdiff udiff text old ( 96463 ) new ( 96512 )
full compact
1# $FreeBSD: head/lib/csu/sparc64/Makefile 96512 2002-05-13 10:53:24Z ru $
2
3.PATH: ${.CURDIR}/../common
4
5SRCS= crt1.c crti.S crtn.S
6OBJS= ${SRCS:N*.h:R:S/$/.o/g}
7OBJS+= gcrt1.o
8CFLAGS+= -I${.CURDIR}/../common -I${.CURDIR}/../../libc/include
9
10all: ${OBJS} ${SOBJS}
11
12gcrt1.o: crt1.c
13 ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC}
14
15realinstall:
16.for file in ${OBJS} ${SOBJS}
17 ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
18 ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/}
19.endfor
20
21.include <bsd.lib.mk>