diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2000-04-19 23:46:21 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-04-19 23:46:21 +0000 |
| commit | d7ff52ec7969e596c09858ba46d664bb51a71054 (patch) | |
| tree | 9df8e0a73878a05cda1af94305650482913ff189 /lib | |
| parent | d4977851330264e13e72abb947238e8c80ebc442 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/csu/ia64/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
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 <bsd.lib.mk> |
