freebsd-dev/lib/csu/alpha/Makefile
John Polstra 1306c069d2 Ugh. I didn't know this Makefile was reaching over into the dynamic
linker sources for some of its header files.  Add a -I flag to pick
up a new directory over there.
1999-04-09 05:56:23 +00:00

25 lines
544 B
Makefile

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