Lines Matching refs:target
3 # Tests for the special target .MAIN in dependency declarations, which defines
4 # the main target. This main target is built if no target has been specified
7 # The first target becomes the main target by default. It can be overridden
10 @echo 'This target is not made.'
12 # This target is not the first to be defined, but it lists '.MAIN' as one of
17 @echo 'This target is not made either.'
19 # This target is the first to be marked with '.MAIN', so it replaces the
20 # previous main target, which was 'all'.
23 @echo 'This target ${.TARGET} is the one that is made.'
25 # This target is marked with '.MAIN' but there already is a main target. The
29 @echo 'This target comes too late, there is already a .MAIN target.'