diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1999-04-03 22:52:35 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-04-03 22:52:35 +0000 |
commit | 7b7a0120f8017992b5af50c864963fcdfec4d7a3 (patch) | |
tree | 112342b872d26b0856fbe19fe767b2ccc545ddf0 /gnu/lib | |
parent | 07963c8cbf3842a587253fdb378eb2b5e0bb74b5 (diff) | |
download | src-7b7a0120f8017992b5af50c864963fcdfec4d7a3.tar.gz src-7b7a0120f8017992b5af50c864963fcdfec4d7a3.zip |
Makefile.inc was politing all subdir's with SHLIB_{MAJOR,MINOR} definitions.
Since we aren't keeping all the GNU libs at the same versions, this is
useless and causes us to build a shared libgcc, which we don't want to do.
Notes
Notes:
svn path=/head/; revision=45275
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/Makefile.inc | 8 | ||||
-rw-r--r-- | gnu/lib/libregex/Makefile | 11 |
2 files changed, 7 insertions, 12 deletions
diff --git a/gnu/lib/Makefile.inc b/gnu/lib/Makefile.inc deleted file mode 100644 index 12f592c17d0e..000000000000 --- a/gnu/lib/Makefile.inc +++ /dev/null @@ -1,8 +0,0 @@ -# $Id$ - -SHLIB_MAJOR?= 2 -SHLIB_MINOR?= 0 - - -# NB: SHLIB major and minor nos. must also be specified in libg++/Makefile.inc -# (This is due to the deeper tree structure of libg++) diff --git a/gnu/lib/libregex/Makefile b/gnu/lib/libregex/Makefile index 60f7bdfc1102..eba58839c795 100644 --- a/gnu/lib/libregex/Makefile +++ b/gnu/lib/libregex/Makefile @@ -1,12 +1,15 @@ -# $Header: /home/ncvs/src/gnu/lib/libregex/Makefile,v 1.18 1996/08/30 02:12:07 peter Exp $ +# $Header: /home/ncvs/src/gnu/lib/libregex/Makefile,v 1.19 1996/11/16 22:53:42 joerg Exp $ +SUBDIR+= doc + +LIB= gnuregex +SHLIB_MAJOR= 2 +SHLIB_MINOR= 0 -LIB= gnuregex -CFLAGS+=-I${.CURDIR} -DHAVE_STRING_H=1 -DSTDC_HEADERS=1 -DNO_POSIX_COMPAT=1 SRCS= regex.c NOMAN= noman -SUBDIR+= doc +CFLAGS+=-I${.CURDIR} -DHAVE_STRING_H=1 -DSTDC_HEADERS=1 -DNO_POSIX_COMPAT=1 beforeinstall: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/regex.h \ |