1998-03-10 07:04:18 +00:00
|
|
|
#
|
1999-04-09 05:56:23 +00:00
|
|
|
# $Id: Makefile,v 1.7 1999/01/09 21:50:56 jdp Exp $
|
1998-03-10 07:04:18 +00:00
|
|
|
#
|
|
|
|
|
1999-04-09 05:56:23 +00:00
|
|
|
RTLDDIR= ${.CURDIR}/../../../libexec/rtld-elf
|
|
|
|
|
1998-03-11 20:41:55 +00:00
|
|
|
SRCS= crt1.c crtbegin.c crtend.c
|
|
|
|
OBJS= crt1.o crtbegin.o crtend.o
|
1999-01-09 21:51:00 +00:00
|
|
|
SOBJS= crtbegin.So crtend.So
|
1999-04-09 05:56:23 +00:00
|
|
|
CFLAGS+= -Wall -Wno-unused -I${RTLDDIR}/${MACHINE_ARCH} -I${RTLDDIR}
|
1998-03-10 07:04:18 +00:00
|
|
|
NOMAN= true
|
|
|
|
NOPIC= true
|
|
|
|
NOPROFILE= true
|
|
|
|
INTERNALLIB= true
|
1998-03-11 20:41:55 +00:00
|
|
|
|
1998-03-10 07:04:18 +00:00
|
|
|
all: ${OBJS} ${SOBJS}
|
|
|
|
|
|
|
|
realinstall:
|
|
|
|
.for file in ${OBJS} ${SOBJS}
|
|
|
|
${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
1999-01-09 21:51:00 +00:00
|
|
|
${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/}
|
1998-03-10 07:04:18 +00:00
|
|
|
.endfor
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|