diff options
-rw-r--r-- | bin/chflags/Makefile | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cc/cc1/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/cc/cc1obj/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/cc/cc1plus/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/gzip/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/tar/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/chflags/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/lex/lib/Makefile | 6 | ||||
-rw-r--r-- | usr.sbin/cron/lib/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/mrouted/common/Makefile | 8 | ||||
-rw-r--r-- | usr.sbin/pcvt/kbdio/Makefile | 1 |
11 files changed, 19 insertions, 20 deletions
diff --git a/bin/chflags/Makefile b/bin/chflags/Makefile index 875dc98..d269255 100644 --- a/bin/chflags/Makefile +++ b/bin/chflags/Makefile @@ -1,6 +1,6 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -NOSHARED= true +NOSHARED?=yes PROG= chflags SRCS= chflags.c stat_flags.c diff --git a/gnu/usr.bin/cc/cc1/Makefile b/gnu/usr.bin/cc/cc1/Makefile index 0351cfa..9be4343 100644 --- a/gnu/usr.bin/cc/cc1/Makefile +++ b/gnu/usr.bin/cc/cc1/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.11 1997/02/22 15:44:53 peter Exp $ # PROG = cc1 @@ -8,7 +8,7 @@ SRCS = c-parse.c \ c-typeck.c BINDIR= /usr/libexec NOMAN= 1 -NOSHARED= true +NOSHARED=yes DPADD+= ${LIBCC_INT} LDADD+= ${LIBCC_INT} diff --git a/gnu/usr.bin/cc/cc1obj/Makefile b/gnu/usr.bin/cc/cc1obj/Makefile index a5f5a99..05aac08 100644 --- a/gnu/usr.bin/cc/cc1obj/Makefile +++ b/gnu/usr.bin/cc/cc1obj/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.4 1997/02/22 15:44:54 peter Exp $ # PROG = cc1obj @@ -8,7 +8,7 @@ SRCS = objc-parse.c objc-act.c SRCS += c-aux-info.c c-convert.c c-decl.c c-iterate.c c-lex.c c-typeck.c BINDIR= /usr/libexec NOMAN= 1 -NOSHARED= true +NOSHARED=yes DPADD+= ${LIBCC_INT} LDADD+= ${LIBCC_INT} diff --git a/gnu/usr.bin/cc/cc1plus/Makefile b/gnu/usr.bin/cc/cc1plus/Makefile index 2f9b0f7..1ea6870 100644 --- a/gnu/usr.bin/cc/cc1plus/Makefile +++ b/gnu/usr.bin/cc/cc1plus/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.11 1997/02/22 15:44:56 peter Exp $ # #First, so that we get cp/tree.c and cp/expr.c instead of the C version @@ -12,7 +12,7 @@ SRCS = parse.c \ ptree.c repo.c search.c sig.c spew.c tree.c typeck.c typeck2.c xref.c BINDIR= /usr/libexec NOMAN= 1 -NOSHARED= true +NOSHARED=yes DPADD+= ${LIBCC_INT} LDADD+= ${LIBCC_INT} CFLAGS+= -I. # I mean it. diff --git a/gnu/usr.bin/gzip/Makefile b/gnu/usr.bin/gzip/Makefile index 99a0075..77eb4a6 100644 --- a/gnu/usr.bin/gzip/Makefile +++ b/gnu/usr.bin/gzip/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 5.3 (Berkeley) 5/12/90 -# $Id$ +# $Id: Makefile,v 1.14 1997/02/22 15:45:54 peter Exp $ PROG= gzip SRCS= gzip.c zip.c deflate.c trees.c bits.c unzip.c inflate.c util.c \ @@ -15,7 +15,7 @@ LINKS+= ${BINDIR}/gzip ${BINDIR}/zcat LINKS+= ${BINDIR}/zgrep ${BINDIR}/zegrep LINKS+= ${BINDIR}/zgrep ${BINDIR}/zfgrep LINKS+= ${BINDIR}/zdiff ${BINDIR}/zcmp -NOSHARED=yes +NOSHARED?=yes beforeinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ diff --git a/gnu/usr.bin/tar/Makefile b/gnu/usr.bin/tar/Makefile index 0fea3db..2bd1198 100644 --- a/gnu/usr.bin/tar/Makefile +++ b/gnu/usr.bin/tar/Makefile @@ -9,7 +9,7 @@ CFLAGS+= -DHAVE_MKNOD=1 -DHAVE_RENAME=1 -DHAVE_FTRUNCATE=1 -DHAVE_GETCWD=1 CFLAGS+= -DBSD42=1 -DHAVE_VPRINTF=1 -DNEEDPAD -I${.CURDIR} CFLAGS+= -DDEF_AR_FILE=\"/dev/rst0\" -DDEFBLOCKING=20 CLEANFILES+=y.tab.h -NOSHARED=yes +NOSHARED?=yes DPADD+= ${LIBGNUREGEX} LDADD+= -lgnuregex diff --git a/usr.bin/chflags/Makefile b/usr.bin/chflags/Makefile index 875dc98..d269255 100644 --- a/usr.bin/chflags/Makefile +++ b/usr.bin/chflags/Makefile @@ -1,6 +1,6 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -NOSHARED= true +NOSHARED?=yes PROG= chflags SRCS= chflags.c stat_flags.c diff --git a/usr.bin/lex/lib/Makefile b/usr.bin/lex/lib/Makefile index 046430e..8fd744f 100644 --- a/usr.bin/lex/lib/Makefile +++ b/usr.bin/lex/lib/Makefile @@ -1,7 +1,9 @@ -# $Id$ +# $Id: Makefile,v 1.5 1997/02/22 19:55:36 peter Exp $ LIB= ln SRCS= libmain.c libyywrap.c +NOPIC= yes + LINKS= ${LIBDIR}/libln.a ${LIBDIR}/libl.a LINKS+= ${LIBDIR}/libln.a ${LIBDIR}/libfl.a @@ -10,7 +12,5 @@ LINKS+= ${LIBDIR}/libln_p.a ${LIBDIR}/libl_p.a LINKS+= ${LIBDIR}/libln_p.a ${LIBDIR}/libfl_p.a .endif -NOSHARED= - .include <bsd.lib.mk> diff --git a/usr.sbin/cron/lib/Makefile b/usr.sbin/cron/lib/Makefile index ff76913..5c61065 100644 --- a/usr.sbin/cron/lib/Makefile +++ b/usr.sbin/cron/lib/Makefile @@ -2,7 +2,7 @@ LIB= cron SRCS= entry.c env.c misc.c CFLAGS+= -I${.CURDIR}/../cron -NOSHARED= yes +NOPIC= yes NOPROFILE= yes install: diff --git a/usr.sbin/mrouted/common/Makefile b/usr.sbin/mrouted/common/Makefile index 9bcfb27..801a207 100644 --- a/usr.sbin/mrouted/common/Makefile +++ b/usr.sbin/mrouted/common/Makefile @@ -1,8 +1,8 @@ -# $Id$ +# $Id: Makefile,v 1.3 1997/02/22 16:07:20 peter Exp $ -LIB= mrouted -NOPROFILE= -NOSHARED= +LIB= mrouted +NOPROFILE= yes +NOPIC= yes S= ${.CURDIR}/.. .PATH: $S diff --git a/usr.sbin/pcvt/kbdio/Makefile b/usr.sbin/pcvt/kbdio/Makefile index 398736f..2b320b4 100644 --- a/usr.sbin/pcvt/kbdio/Makefile +++ b/usr.sbin/pcvt/kbdio/Makefile @@ -23,7 +23,6 @@ DPADD= ${LIBM} ${LIBY} ${LIBL} LDADD= -lm -ly -ll NOMAN= -NOSHARED= no shared linkage CFLAGS+= -I${.OBJDIR} -I${.CURDIR} #-g |