diff options
author | obrien <obrien@FreeBSD.org> | 2000-04-19 23:46:21 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-04-19 23:46:21 +0000 |
commit | b86f59222971ce8e1ded778420f9d916dd650e5a (patch) | |
tree | f8b21495289ff6a3b41495d3276fdd0f3b5a131d /lib/csu | |
parent | 948ba018cd32d322134af5579f899a9d8480ea33 (diff) | |
download | FreeBSD-src-b86f59222971ce8e1ded778420f9d916dd650e5a.zip FreeBSD-src-b86f59222971ce8e1ded778420f9d916dd650e5a.tar.gz |
CSU source for IA-64. Current we use the ../Alpha sources.
Diffstat (limited to 'lib/csu')
-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 0000000..be882fe --- /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> |