diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-15 01:48:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-15 01:48:09 +0000 |
commit | 472d1ae02311f5073c622b96d082cd69e297f672 (patch) | |
tree | 2be547a5ea59857d19894f73dc36fefbeee3cca1 /share | |
parent | 7deee5322fbe3b85249441618fb1b15616784101 (diff) |
from netbsd; assert -Werror
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.README | 12 | ||||
-rw-r--r-- | share/mk/bsd.sys.mk | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/share/mk/bsd.README b/share/mk/bsd.README index b9c153a6dac..45ada4a27e5 100644 --- a/share/mk/bsd.README +++ b/share/mk/bsd.README @@ -1,4 +1,4 @@ -# $NetBSD: bsd.README,v 1.13 1995/10/22 00:45:54 christos Exp $ +# $NetBSD: bsd.README,v 1.14 1995/12/13 01:25:05 cgd Exp $ # @(#)bsd.README 5.1 (Berkeley) 5/11/90 This is the README file for the new make "include" files for the BSD @@ -275,12 +275,10 @@ SUBDIRS. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= The include file <bsd.sys.mk> is used by <bsd.prog.mk> and -<bsd.lib.mk>. It contains a set of rules for lex and yacc that -can be used when multiple lex and yacc files are present in the -same directory, and their respective targets are made in parallel. -Since it renames the yacc output include files these rules are not -used by default. They can be enabled by setting the PARALLEL variable -in the Makefile. +<bsd.lib.mk>. It contains overrides that are used when building +the NetBSD source tree. For instance, if "PARALLEL" is defined by +the program/library Makefile, it includes a set of rules for lex and +yacc that allow multiple lex and yacc targets to be built in parallel. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index 0117215cb4d..68275a110d7 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -1,6 +1,8 @@ -# $NetBSD: bsd.sys.mk,v 1.1 1995/10/22 00:45:59 christos Exp $ +# $NetBSD: bsd.sys.mk,v 1.2 1995/12/13 01:25:07 cgd Exp $ # -# Parallel make rule overrides +# Overrides used for NetBSD source tree builds. + +CFLAGS+= -Werror .if defined(PARALLEL) # Lex |