Lines Matching refs:override
118 * Overriding Makefiles:: How to override part of one makefile
257 * Overriding:: How to override a variable to specify
287 * Canceling Rules:: How to override or cancel built-in rules.
588 override this behavior using the command line (*note Arguments to
825 * Overriding Makefiles:: How to override part of one makefile
2777 * You may wish to override the usual implicit rule for a few files
3218 exported. You can override this behavior by explicitly exporting
3502 default, an environment variable `CURDIR' will not override this
3568 defined in the sub-`make' as defaults, but do not override what is
3966 should override with command options (*note Overriding Variables:
4556 6.7 The `override' Directive
4562 it was set with a command argument, you can use an `override'
4565 override VARIABLE = VALUE
4569 override VARIABLE := VALUE
4573 override VARIABLE += MORE TEXT
4577 The `override' directive was not invented for escalation in the war
4584 `override' directive:
4586 override CFLAGS += -g
4588 You can also use `override' directives with `define' directives.
4591 override define foo
4647 `override' directive together with `define':
4649 override define two-lines
4654 *Note The `override' Directive: Override Directive.
4667 then values from the environment override assignments in the makefile.
4722 TARGET ... : override VARIABLE-ASSIGNMENT
4743 Specifying the `override' directive will allow the target-specific
4749 prerequisites, etc. (unless those prerequisites override that variable
4792 PATTERN ... : override VARIABLE-ASSIGNMENT
4798 precedence, unless `override' is specified.
5399 override CFLAGS += $(patsubst %,-I%,$(subst :, ,$(VPATH)))
5402 given value of `CFLAGS'. The `override' directive is used so that the
5404 specified with a command argument (*note The `override' Directive:
5876 `environment override'
5886 `override'
5887 if VARIABLE was defined with an `override' directive in a makefile
5888 (*note The `override' Directive: Override Directive.).
5900 including `bar', you do not want to override that definition. This
5901 could be done by using an `override' directive in `foo', giving that
5903 unfortunately, the `override' directive would also override any command
5915 If you want to override a previous definition of `bletch' if it came
5923 either `environment' or `environment override'. *Note Functions for
6086 * Overriding:: How to override a variable to specify
6374 Each time you run `make', you can override this value if you wish.
6378 the value of a variable when you override it.)
6388 When you override a variable with a command argument, you can define
6397 have overridden. This is to use the `override' directive, which is a
6398 line that looks like this: `override VARIABLE = VALUE' (*note The
6399 `override' Directive: Override Directive.).