Deleted Added
sdiff udiff text old ( 85593 ) new ( 93399 )
full compact
1# $FreeBSD: head/lib/csu/ia64/Makefile 85593 2001-10-27 08:29:03Z obrien $
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+= -Wall -Wno-unused \
9 -I${.CURDIR}/../common
10NOMAN= true
11NOPIC= true
12NOPROFILE= true
13INTERNALLIB= true
14
15all: ${OBJS} ${SOBJS}
16
17gcrt1.o: crt1.c
18 ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC}
19
20realinstall:
21.for file in ${OBJS} ${SOBJS}
22 ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
23 ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/}
24.endfor
25
26.include <bsd.lib.mk>