/src/tools/make/ |
configure.ac | 3 # Autoconf definition file for make. 11 # cd ${SRCDIR}/tools/make && \ 19 # cd ${SRCDIR}/tools/make && \ 25 AC_INIT([make], [noversion], [bin-bug-people@NetBSD.org]) package 37 # Make sure we have POSIX regex ability. 62 AC_MSG_NOTICE([========== configure results for make ===========])
|
/src/usr.bin/make/unit-tests/ |
opt-no-action-touch.mk | 5 # but still make needs to behave as expected. The option -n is stronger than 15 .MAKEFLAGS: opt-touch-make 33 # The attribute .MAKE is stronger than the command line option -n. Therefore 36 opt-touch-make: .MAKE
|
opt-touch.mk | 5 .MAKEFLAGS: -t opt-touch-phony opt-touch-join opt-touch-use opt-touch-make 16 opt-touch-make: .MAKE
|
varname-dot-make-mode.mk | 1 # $NetBSD: varname-dot-make-mode.mk,v 1.3 2022/05/07 17:49:47 rillig Exp $ 3 # Tests for the special .MAKE.MODE variable. 5 # TODO: test .MAKE.MODE "meta", or see meta mode tests. 6 # TODO: test .MAKE.MODE "compat" 11 all: .PHONY make-mode-randomize-targets 14 # By adding the word "randomize-targets" to the variable .MAKE.MODE, the 23 make-mode-randomize-targets: .PHONY 25 @${MAKE} -r -f ${MAKEFILE} randomize-targets 28 @${MAKE} -r -f ${MAKEFILE} -j1 randomize-targets 31 @${MAKE} -r -f ${MAKEFILE} -j5 randomize-targets | grep '^: [all...] |
opt-touch-jobs.mk | 10 .MAKEFLAGS: opt-touch-make 31 opt-touch-make: .MAKE
|
gnode-submake.mk | 4 # shell commands are connected to the make process via pipes, to coordinate 7 # Determining whether a node is a sub-make node happens when the node is 13 all: makeinfo make-index 19 # The command contains the substring "make", but not as a whole word. 22 make-index: 23 # The command contains the word "make", therefore it is considered a 24 # possible sub-make. It isn't really, but that doesn't hurt. 25 : make-index 28 : ${.MAKE} 31 : ${MAKE} [all...] |
Makefile | 3 # Unit tests for make(1) 17 # The make program to be tested. 27 # To do that, run "make sync-mi" in this directory. 32 # we use these below but we might be an older make 33 .MAKE.OS?= ${uname -s:L:sh} 34 .MAKE.UID?= ${id -u:L:sh} 42 TMPDIR:= ${TMPDIR}/uid${.MAKE.UID} 44 TMPDIR:= /tmp/uid${.MAKE.UID} 46 # make sure it exists 59 # src/tests/usr.bin/make/t_make.sh as well [all...] |
/src/usr.bin/error/ |
input.c | 56 static Errorclass make(void); 98 || (( errorclass = make() ) != C_UNKNOWN) 173 * c) Noise from make ("Stop.") 564 make(void) function in typeref:typename:Errorclass
|
/src/sys/dev/ |
ccd.c | 253 ccdget(int unit, int make) { 269 if (!make) 1087 int part, pmask, make, hook; local in function:ccdioctl 1100 make = 1; 1107 make = 1; 1109 make = 0; 1113 if ((cs = ccdget(unit, make)) == NULL)
|
/src/usr.bin/make/ |
main.c | 104 #include "make.h" 122 time_t now; /* Time at start of make */ 438 Global_Set(".MAKE.JOBS", v); 468 Global_Set(".MAKE.MODE", "compat"); 702 FStr argv0 = Var_Value(SCOPE_GLOBAL, ".MAKE"); 816 char *mode = Var_Subst("${.MAKE.MODE:tl}", SCOPE_GLOBAL, VARE_EVAL); 890 expandVars = GetBooleanExpr("${.MAKE.EXPAND_VARIABLES}", 925 * If none specified, make the variable empty for now, the parser will fill 1092 opts.noRecursiveExecute = false; /* Execute all .MAKE targets */ 1107 * Initialize MAKE and .MAKE to the path of the executable, so that it can b 1116 const char *make = argv0; local in function:InitVarMake [all...] |