diff options
author | obrien <obrien@FreeBSD.org> | 2001-10-27 08:29:03 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-10-27 08:29:03 +0000 |
commit | 679fe89052138413437672e905e7cceeeffbb01c (patch) | |
tree | 458cccf861701e40dfdde84d5ce169e73eaff81c /lib/csu | |
parent | 401cae0ddc0e46fcdfa268e7a834808996c0bf6d (diff) | |
download | FreeBSD-src-679fe89052138413437672e905e7cceeeffbb01c.zip FreeBSD-src-679fe89052138413437672e905e7cceeeffbb01c.tar.gz |
Update for reality and syncing with other FreeBSD platforms.
Diffstat (limited to 'lib/csu')
-rw-r--r-- | lib/csu/ia64/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/csu/ia64/Makefile b/lib/csu/ia64/Makefile index 41c0aa8..0ee91e0 100644 --- a/lib/csu/ia64/Makefile +++ b/lib/csu/ia64/Makefile @@ -2,12 +2,11 @@ .PATH: ${.CURDIR}/../common -SRCS= crt1.c crtbegin.c crtend.c -OBJS= crt1.o crtbegin.o crtend.o +SRCS= crt1.c crti.S crtn.S +OBJS= ${SRCS:N*.h:R:S/$/.o/g} OBJS+= gcrt1.o -SOBJS= crtbegin.So crtend.So -CFLAGS+= -Wall -Wno-unused -CFLAGS+= -I${.CURDIR}/../common +CFLAGS+= -Wall -Wno-unused \ + -I${.CURDIR}/../common NOMAN= true NOPIC= true NOPROFILE= true @@ -15,7 +14,7 @@ INTERNALLIB= true all: ${OBJS} ${SOBJS} -gcrt1.o: crt1.c +gcrt1.o: crt1.c ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC} realinstall: |