Home
last modified time | relevance | path

Searched full:makefiles (Results 1 – 25 of 262) sorted by relevance

1234567891011

/freebsd/share/mk/
H A Dbsd.opts.mk11 # Makefiles must include bsd.opts.mk after defining specific MK_FOO options that
16 # Makefiles must include bsd.mkopt.mk before they test the value of any MK_FOO
19 # Makefiles may also assume that this file is included by bsd.own.mk should it
27 # Makefiles should never test WITH_FOO or WITHOUT_FOO directly (although an
40 # These should be tested with `== "no"' or `!= "no"' in makefiles.
41 # The NO_* variables should only be set by makefiles for variables
H A Dsrc.opts.mk10 # Makefiles must include bsd.opts.mk after defining specific MK_FOO options that
15 # Makefiles must include bsd.mkopt.mk before they test the value of any MK_FOO
18 # Makefiles may also assume that this file is included by src.opts.mk should it
26 # Makefiles should never test WITH_FOO or WITHOUT_FOO directly (although an
40 # These should be tested with `== "no"' or `!= "no"' in makefiles.
41 # The NO_* variables should only be set by makefiles for variables
H A Ddirdeps.mk59 # .MAKE.DEPENDFILE_PREFIX) to refer to these makefiles to
232 # The makefiles may only partially specify (eg. MACHINE only),
578 # leaf makefiles rarely work for building DIRDEPS_CACHE
621 …{ echo; echo '.info $${.newline}$${TRACER}Makefiles read: total=${.MAKE.MAKEFILES:[#]} depend=${.M…
627 …@echo "${TRACER}Makefiles read: total=${.MAKE.MAKEFILES:[#]} depend=${.MAKE.MAKEFILES:M*depend*:[#…
874 # some makefiles may still look at this
/freebsd/contrib/bmake/unit-tests/
H A Ddirective-include.mk9 # All included files are recorded in the variable .MAKE.MAKEFILES.
13 .if ${.MAKE.MAKEFILES:T} != "${.PARSEFILE} null"
17 # Each file is recorded only once in the variable .MAKE.MAKEFILES.
21 .if ${.MAKE.MAKEFILES:T} != "${.PARSEFILE} null"
H A Dvarname-dot-make-makefiles.mk1 # $NetBSD: varname-dot-make-makefiles.mk,v 1.2 2020/08/16 14:25:16 rillig Exp $
3 # Tests for the special .MAKE.MAKEFILES variable.
H A Ddirective-include.exp1 CondParser_Eval: ${.MAKE.MAKEFILES:T} != "${.PARSEFILE} null"
3 CondParser_Eval: ${.MAKE.MAKEFILES:T} != "${.PARSEFILE} null"
H A Ddirective-include-fatal.mk8 # the top-level makefiles from the command line. Any included files are
23 # in the global "makefiles" variable, but not immediately run through
H A Dvarname-makefile.mk7 # again for each of these makefiles, before the file is parsed.
47 # Additional makefiles can be added while reading a makefile. They will be
H A Dvarname-vpath.mk5 # when the makefiles are read, but only later when the shell commands are run.
28 # It is evaluated only once, between reading the makefiles and making the
/freebsd/crypto/libecc/
H A DMakefile166 # and to do this before all the DEPS files are included as makefiles.
167 MAKEFILES:=$(MAKEFILE_LIST) macro
169 # Make object files depend on all makefiles used - this forces a rebuild if any
170 # of the makefiles are changed
171 $(OBJS) : $(MAKEFILES)
173 # Dep files are makefiles that keep track of which header files are used by the
/freebsd/contrib/bmake/
H A Dmake.163 looks for the makefiles listed in
77 and makefiles, please refer to
94 before reading the makefiles or doing anything else.
180 Print commands in Makefiles regardless of whether or not they are prefixed by
235 Let environment variables override global variables within makefiles.
251 Multiple makefiles may be specified, and are read in the order specified.
253 Specify a directory in which to search for makefiles and included makefiles.
310 and makefiles included via the
358 useful for debugging top-level makefiles
392 makefiles have been read.
[all …]
H A Dbmake.163 looks for the makefiles listed in
77 and makefiles, please refer to
94 before reading the makefiles or doing anything else.
180 Print commands in Makefiles regardless of whether or not they are prefixed by
235 Let environment variables override global variables within makefiles.
251 Multiple makefiles may be specified, and are read in the order specified.
253 Specify a directory in which to search for makefiles and included makefiles.
310 and makefiles included via the
358 useful for debugging top-level makefiles
392 makefiles have been read.
[all …]
H A Dbmake.cat116 …given, bbmmaakkee looks for the makefiles listed in _._M_A_K_E_._M_A_K_E_F_I_L_…
21 thorough description of bbmmaakkee and makefiles, please refer to _P_M_a_k_e _- _A
34 Change to _d_i_r_e_c_t_o_r_y before reading the makefiles or doing
100 ll Print commands in Makefiles regardless of whether or not
138 makefiles.
145 the current directory and its parents. Multiple makefiles may be
149 Specify a directory in which to search for makefiles and included
150 makefiles. The system makefile directory (or directories, see
188 Specify a directory in which to search for _s_y_s_._m_k and makefiles
214 makefiles without descending into subdirectories.
[all …]
H A Dmain.c537 Lst_Append(&opts.makefiles, bmake_strdup(argvalue)); in MainParseOption()
816 /* Allow makefiles some control over the mode we run in. */
1106 Lst_Init(&opts.makefiles); in CmdOpts_Init()
1304 ReadAllMakefiles(const StringList *makefiles) in ReadAllMakefiles() argument
1308 for (ln = makefiles->first; ln != NULL; ln = ln->next) { in ReadAllMakefiles()
1318 StringList makefiles = LST_INIT; in ReadFirstDefaultMakefile() local
1324 AppendWords(&makefiles, prefs); in ReadFirstDefaultMakefile()
1326 for (ln = makefiles.first; ln != NULL; ln = ln->next) in ReadFirstDefaultMakefile()
1330 Lst_Done(&makefiles); in ReadFirstDefaultMakefile()
1389 /* This is the traditional preference for makefiles. */ in main_Init()
[all …]
/freebsd/contrib/bmake/mk/
H A Dmk-files.txt36 Library makefiles include ``lib.mk`` and programs include ``prog.mk``
62 provided by bmake_ that allow simple makefiles such as the above to
72 The makefiles ``lib.mk``, ``prog.mk``, ``init.mk``, ``own.mk``,
77 The other makefiles (apart from ``sys.mk``) can be used in conjunction
182 Note: ``WITHOUT_*`` wins if both are set, and makefiles can set
261 Makefiles can use the LIB* macros defined via libnames.mk_ or anywhere
310 into a program. Prog makefiles usually need to list the libraries
529 makefiles contributed by Juniper Networks, Inc.
545 We have the following makefiles which are relevant to
/freebsd/crypto/krb5/src/config/
H A Dpre.in114 Makefiles: Makefiles-postrecurse
115 Makefiles-postrecurse: Makefiles-recurse
116 Makefiles-recurse: Makefiles-prerecurse
118 Makefiles-prerecurse:
119 Makefiles-postrecurse:
H A Dpost.in187 Makefiles-prerecurse: Makefile
205 Makefiles-recurse install-headers-recurse
210 # Makefiles in different directories; the setting of SUBDIRS will be
215 # generates multiple Makefiles.
/freebsd/targets/pseudo/bootstrap-packages/
H A DMakefile3 # Compensate (a bit) for the lack of per package makefiles or other means
5 # We can derive some of the information we want from the makefiles that
/freebsd/sys/contrib/openzfs/module/icp/
H A Dillumos-crypto.c104 * 9) Makefiles: Makefiles were added that would work with the existing
105 * ZFS Makefiles.
/freebsd/usr.sbin/config/
H A Dconfigvers.h16 * sys/conf/ Makefiles (the kernel build system).
45 * %VERSREQ field in the Makefile.$ARCH of all the affected makefiles
/freebsd/contrib/openbsm/
H A DFREEBSD-upgrade9 src/usr.sbin/*audit* Makefiles for various OpenBSM tools
27 - Update any library, tool, or etc BSD Makefiles to add new files,
/freebsd/sys/conf/
H A Dkern.opts.mk11 # These should be tested with `== "no"' or `!= "no"' in makefiles.
12 # The NO_* variables should only be set by makefiles for variables
214 # wrapped around declarations. Module makefiles can optionally compile such
/freebsd/share/man/man5/
H A Dmake.conf.559 variables that control the actions of other makefiles.
128 .Pa makefiles
205 Note that some makefiles (including those in
218 to process the command scripts in makefiles.
H A Dstyle.Makefile.538 This file specifies the preferred style for makefiles in the
125 Do not use vertical whitespace in simple makefiles,
/freebsd/share/doc/smm/01.setup/
H A Dspell.ok104 Makefiles
368 makefiles

1234567891011