Deleted Added
full compact
Makefile (85594) Makefile (93399)
1# $FreeBSD: head/lib/csu/amd64/Makefile 85594 2001-10-27 08:30:36Z obrien $
1# $FreeBSD: head/lib/csu/amd64/Makefile 93399 2002-03-29 22:43:43Z markm $
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+= -elf -Wall -fkeep-inline-functions \
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+= -elf -Wall -fkeep-inline-functions \
9 -I${.CURDIR}/../common
9 -I${.CURDIR}/../common \
10 -I${.CURDIR}/../../libc/include
10LDFLAGS+= -elf
11NOMAN= true
12NOPIC= true
13NOPROFILE= true
14INTERNALLIB= true
15
16
17all: ${OBJS} ${SOBJS}
18
19gcrt1.o: crt1.c
20 ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c
21
22realinstall:
23.for file in ${OBJS} ${SOBJS}
24 ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
25 ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/}
26.endfor
27
28.include <bsd.lib.mk>
11LDFLAGS+= -elf
12NOMAN= true
13NOPIC= true
14NOPROFILE= true
15INTERNALLIB= true
16
17
18all: ${OBJS} ${SOBJS}
19
20gcrt1.o: crt1.c
21 ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c
22
23realinstall:
24.for file in ${OBJS} ${SOBJS}
25 ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
26 ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/}
27.endfor
28
29.include <bsd.lib.mk>