xref: /freebsd/share/mk/bsd.opts.mk (revision 0572ccaa4543b0abef8ef81e384c1d04de9f3da1)
1# $FreeBSD$
2#
3# Option file for src builds.
4#
5# Users define WITH_FOO and WITHOUT_FOO on the command line or in /etc/src.conf
6# and /etc/make.conf files. These translate in the build system to MK_FOO={yes,no}
7# with sensible (usually) defaults.
8#
9# Makefiles must include bsd.opts.mk after defining specific MK_FOO options that
10# are applicable for that Makefile (typically there are none, but sometimes there
11# are exceptions). Recursive makes usually add MK_FOO=no for options that they wish
12# to omit from that make.
13#
14# Makefiles must include bsd.srcpot.mk before they test the value of any MK_FOO
15# variable.
16#
17# Makefiles may also assume that this file is included by bsd.own.mk should it
18# need variables defined there prior to the end of the Makefile where
19# bsd.{subdir,lib.bin}.mk is traditionally included.
20#
21# The old-style YES_FOO and NO_FOO are being phased out. No new instances of them
22# should be added. Old instances should be removed since they were just to
23# bridge the gap between FreeBSD 4 and FreeBSD 5.
24#
25# Makefiles should never test WITH_FOO or WITHOUT_FOO directly (although an
26# exception is made for _WITHOUT_SRCONF which turns off this mechanism
27# completely).
28#
29
30.if !target(__<bsd.opts.mk>__)
31__<bsd.opts.mk>__:
32
33.if !defined(_WITHOUT_SRCCONF)
34#
35# Define MK_* variables (which are either "yes" or "no") for users
36# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
37# make(1) environment.
38# These should be tested with `== "no"' or `!= "no"' in makefiles.
39# The NO_* variables should only be set by makefiles for variables
40# that haven't been converted over.
41#
42
43# Only these options are used by bsd.*.mk. Most seem legit, except maybe
44# OPENSSH.
45
46__DEFAULT_YES_OPTIONS = \
47    ASSERT_DEBUG \
48    DOCCOMPRESS \
49    INFO \
50    INSTALLLIB \
51    KERBEROS \
52    MAN \
53    MANCOMPRESS \
54    NIS \
55    NLS \
56    OPENSSH \
57    PROFILE \
58    SSP \
59    SYMVER \
60    TOOLCHAIN \
61    WARNS
62
63__DEFAULT_NO_OPTIONS = \
64    CTF \
65    DEBUG_FILES \
66    INSTALL_AS_USER
67
68.include <bsd.mkopt.mk>
69
70#
71# Supported NO_* options (if defined, MK_* will be forced to "no",
72# regardless of user's setting).
73#
74# These are transitional and will disappaer in the FreeBSD 12.
75#
76.for var in \
77    CTF \
78    DEBUG_FILES \
79    INSTALLLIB \
80    MAN \
81    PROFILE \
82    WARNS
83.if defined(NO_${var})
84# This warning may be premature...
85#.warning "NO_${var} is defined, but deprecated. Please use MK_${var}=no instead."
86MK_${var}:=no
87.endif
88.endfor
89
90.endif # !_WITHOUT_SRCCONF
91
92.endif
93