HomeSort by: relevance | last modified time | path
    Searched refs:MADE (Results 1 - 16 of 16) sorted by relevancy

  /src/usr.bin/make/unit-tests/
depsrc-made.mk 1 # $NetBSD: depsrc-made.mk,v 1.3 2020/09/05 15:57:12 rillig Exp $
3 # Tests for the special source .MADE in dependency declarations,
4 # which marks all its dependencies as already made, so their commands
7 # TODO: Describe a possible use case for .MADE.
11 part1: chapter11 chapter12 .MADE
escape.mk 54 __printvars: .USE .MADE
  /src/share/me/
Makefile 26 ${DESTDIR}${MELIB}/${M}: .MADE
44 #${DESTDIR}${TMLIB}/${M}: .MADE
59 ${DESTDIR}${MELIB}/revisions: .MADE
  /src/share/mk/
bsd.nls.mk 47 ${_F}! .MADE # no build at install
52 ${_F}: .MADE # no build at install
bsd.files.mk 49 ${_F}! .MADE # no build at install
54 ${_F}: .MADE # no build at install
82 ${_F}! .MADE # no build at install
87 ${_F}: .MADE # no build at install
bsd.info.mk 66 ${_F}! .MADE # no build at install
71 ${_F}: .MADE # no build at install
bsd.prog.mk 63 .MADE: ${LIBCRTBEGIN}
67 .MADE: ${LIBCRTEND}
73 .MADE: ${LIBCRT0}
78 .MADE: ${LIBCRTI}
199 .MADE: ${LIB${_lib:tu}} # Note: ${DESTDIR} will be expanded
264 .MADE: ${LIB${_lib:tu}} # Note: ${DESTDIR} will be expanded
272 .MADE: ${LIBXCB_${_lib:tu}} # Note: ${DESTDIR} will be expanded
549 ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! .MADE
554 ${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}! .MADE
564 ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: .MADE
    [all...]
bsd.man.mk 102 ${_F}! .MADE # no build at install
107 ${_F}: .MADE # no build at install
144 .MADE: ${CATDEPS}
170 ${_F}! .MADE # no build at install
175 ${_F}: .MADE # no build at install
242 ${_F}! .MADE # no build at install
247 ${_F}: .MADE # no build at install
bsd.clean.mk 35 __doclean: .PHONY .MADE __cleanuse CLEANFILES
37 __docleandir: .PHONY .MADE __cleanuse CLEANDIRFILES
bsd.lib.mk 793 libclean1: .PHONY .MADE __cleanuse LIBCLEANFILES1
794 libclean2: .PHONY .MADE __cleanuse LIBCLEANFILES2
795 libclean3: .PHONY .MADE __cleanuse LIBCLEANFILES3
796 libclean4: .PHONY .MADE __cleanuse LIBCLEANFILES4
797 libclean5: .PHONY .MADE __cleanuse LIBCLEANFILES5
819 ${_DEST.LIB}/${_LIB.a}! .MADE
824 ${_DEST.LIB}/${_LIB.a}: .MADE
836 ${_DEST.LIB}/${_LIB_p.a}! .MADE
841 ${_DEST.LIB}/${_LIB_p.a}: .MADE
853 ${_DEST.LIB}/${_LIB_g.a}! .MADE
    [all...]
bsd.kmodule.mk 235 ${_P}! .MADE # no build at install
240 ${_P}: .MADE # no build at install
  /src/usr.bin/make/
compat.c 224 * the node's made field is set to ERROR and creation stops.
403 gn->made = ERROR;
519 assert(gn->made == UNMADE);
522 * First mark ourselves to be made, then apply whatever transformations
530 gn->made = BEINGMADE;
538 gn->made = ABORTED;
547 * All the children were made ok. Now youngestChild->mtime contains the
554 gn->made = UPTODATE;
568 * We need to be re-made.
595 gn->made = ERROR
    [all...]
make.c 78 * Make_Update After a target is made, update all its parents.
205 prefix, GNodeMade_Name(gn->made), type, flags, suffix);
349 * (such as a typically used FORCE source) has been made and
352 * child after it was considered made.
540 * depend on FRC to be made, so we have to check for gn->children
566 * the target is made now. Otherwise archives with '...' rules
638 if (succ->made == DEFERRED &&
652 * If the child was made, the parent's flag CHILDMADE field will be
658 * If the child wasn't made, the youngestChild field of the parent will be
681 * If the child was actually made, see what its modification time i
    [all...]
make.h 201 * UNMADE -> BEINGMADE -> MADE.
206 * The successful path when dependencies need to be made first:
207 * UNMADE -> DEFERRED -> REQUESTED -> BEINGMADE -> MADE.
209 * A node that has dependencies, and one of the dependencies cannot be made:
220 * dependencies have to be made first.
228 * The node is already being made. Trying to build a node in this
233 /* Was out-of-date and has been made. */
234 MADE,
235 /* Was already up-to-date, does not need to be made. */
238 * An error occurred while it was being made. Used only in compa
442 GNodeMade made; member in struct:GNode
    [all...]
targ.c 191 gn->made = UNMADE;
305 * everything else has been made.
398 { OP_MADE, true, "MADE" },
422 GNodeMade_Name(GNodeMade made)
424 switch (made) {
428 case BEINGMADE: return "being made";
429 case MADE: return "made";
431 case ERROR: return "error when made";
490 GNodeMade_Name(gn->made));
    [all...]
job.c 178 * that was just remade, marking them as ready to be made next if all
190 * delayed until the .END node is made. This list node points to the
1070 * to be executed later, when the target '.END' is made.
1288 job->node->made = MADE;
1750 job->node->made = MADE;
2530 /* Move last job in table into hole made by dead job. */

Completed in 19 milliseconds