diff options
author | jdp <jdp@FreeBSD.org> | 1999-01-09 21:51:00 +0000 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 1999-01-09 21:51:00 +0000 |
commit | ffcc901f03be5fe906be6bc5e1cbe34adcd2f3d1 (patch) | |
tree | 56fbd00f1073a1c35b0739f64a29af1301a31511 /lib | |
parent | a91fb30979663d29289500055cfac86abf1c3789 (diff) | |
download | FreeBSD-src-ffcc901f03be5fe906be6bc5e1cbe34adcd2f3d1.zip FreeBSD-src-ffcc901f03be5fe906be6bc5e1cbe34adcd2f3d1.tar.gz |
Switch to using ".So" as the extension for PIC object files rather
than ".so". The old extension conflicted with well-established
naming conventions for dynamically loadable modules.
The "clean" targets continue to remove ".so" files too, to deal with
old systems.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/csu/alpha/Makefile | 6 | ||||
-rw-r--r-- | lib/csu/amd64/Makefile | 6 | ||||
-rw-r--r-- | lib/csu/i386-elf/Makefile | 6 | ||||
-rw-r--r-- | lib/libedit/Makefile | 2 |
4 files changed, 10 insertions, 10 deletions
diff --git a/lib/csu/alpha/Makefile b/lib/csu/alpha/Makefile index 219f923..473dc99 100644 --- a/lib/csu/alpha/Makefile +++ b/lib/csu/alpha/Makefile @@ -1,10 +1,10 @@ # -# $Id: Makefile,v 1.5 1998/05/04 02:06:09 jb Exp $ +# $Id: Makefile,v 1.6 1998/08/20 21:37:22 jb Exp $ # SRCS= crt1.c crtbegin.c crtend.c OBJS= crt1.o crtbegin.o crtend.o -SOBJS= crtbegin.so crtend.so +SOBJS= crtbegin.So crtend.So CFLAGS+= -Wall -Wno-unused -I${.CURDIR}/../../../libexec/rtld-elf NOMAN= true NOPIC= true @@ -16,7 +16,7 @@ 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/} + ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/} .endfor .include <bsd.lib.mk> diff --git a/lib/csu/amd64/Makefile b/lib/csu/amd64/Makefile index 6432efe..ae195e8 100644 --- a/lib/csu/amd64/Makefile +++ b/lib/csu/amd64/Makefile @@ -1,11 +1,11 @@ # -# $Id: Makefile,v 1.1.1.1 1998/03/07 20:27:10 jdp Exp $ +# $Id: Makefile,v 1.2 1998/09/07 23:31:59 jdp Exp $ # SRCS= crt1.c crtbegin.c crtend.c crti.S crtn.S OBJS= ${SRCS:N*.h:R:S/$/.o/g} OBJS+= gcrt1.o -SOBJS= crtbegin.so crtend.so +SOBJS= crtbegin.So crtend.So CFLAGS+= -elf CFLAGS+= -Wall -Wno-unused LDFLAGS+= -elf @@ -22,7 +22,7 @@ gcrt1.o: crt1.c realinstall: .for file in ${OBJS} ${SOBJS} ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ - ${file} ${DESTDIR}${LIBDIR}/${file:S/.so$/S.o/} + ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/} .endfor .include <bsd.lib.mk> diff --git a/lib/csu/i386-elf/Makefile b/lib/csu/i386-elf/Makefile index 6432efe..ae195e8 100644 --- a/lib/csu/i386-elf/Makefile +++ b/lib/csu/i386-elf/Makefile @@ -1,11 +1,11 @@ # -# $Id: Makefile,v 1.1.1.1 1998/03/07 20:27:10 jdp Exp $ +# $Id: Makefile,v 1.2 1998/09/07 23:31:59 jdp Exp $ # SRCS= crt1.c crtbegin.c crtend.c crti.S crtn.S OBJS= ${SRCS:N*.h:R:S/$/.o/g} OBJS+= gcrt1.o -SOBJS= crtbegin.so crtend.so +SOBJS= crtbegin.So crtend.So CFLAGS+= -elf CFLAGS+= -Wall -Wno-unused LDFLAGS+= -elf @@ -22,7 +22,7 @@ gcrt1.o: crt1.c realinstall: .for file in ${OBJS} ${SOBJS} ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ - ${file} ${DESTDIR}${LIBDIR}/${file:S/.so$/S.o/} + ${file} ${DESTDIR}${LIBDIR}/${file:S/.So$/S.o/} .endfor .include <bsd.lib.mk> diff --git a/lib/libedit/Makefile b/lib/libedit/Makefile index db3057f..12d5cb4 100644 --- a/lib/libedit/Makefile +++ b/lib/libedit/Makefile @@ -58,7 +58,7 @@ help.h: ${ASRC} makelist editline.c: sh ${.CURDIR}/makelist -e ${OSRCS} > ${.TARGET} -beforedepend editline.o editline.po editline.so: \ +beforedepend editline.o editline.po editline.So: \ vi.h emacs.h common.h fcns.h fcns.c help.h help.c test: test.o libedit.a ${DPADD} ${LIBTERMCAP} |