From d7ff52ec7969e596c09858ba46d664bb51a71054 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 19 Apr 2000 23:46:21 +0000 Subject: [PATCH] CSU source for IA-64. Current we use the ../Alpha sources. --- lib/csu/ia64/Makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 lib/csu/ia64/Makefile diff --git a/lib/csu/ia64/Makefile b/lib/csu/ia64/Makefile new file mode 100644 index 000000000000..be882fe76cdf --- /dev/null +++ b/lib/csu/ia64/Makefile @@ -0,0 +1,28 @@ +# +# $FreeBSD$ +# + +.PATH: ${.CURDIR}/../alpha + +SRCS= crt1.c crtbegin.c crtend.c +OBJS= crt1.o crtbegin.o crtend.o +OBJS+= gcrt1.o +SOBJS= crtbegin.So crtend.So +CFLAGS+= -Wall -Wno-unused +NOMAN= true +NOPIC= true +NOPROFILE= true +INTERNALLIB= true + +all: ${OBJS} ${SOBJS} + +gcrt1.o: crt1.c + ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC} + +realinstall: +.for file in ${OBJS} ${SOBJS} + ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/} +.endfor + +.include