Merge pull request #465 from RaphaelWimmer/patch-1
correctly describe "$*", remove incorrect "$%"
This commit is contained in:
commit
802b169005
|
@ -21,13 +21,12 @@ out.o: src.c src.h
|
||||||
$^ # "src.c src.h" (all prerequisites)
|
$^ # "src.c src.h" (all prerequisites)
|
||||||
|
|
||||||
%.o: %.c
|
%.o: %.c
|
||||||
$% # target member name ("foo" in "foo.c")
|
$* # the 'stem' with which an implicit rule matches ("foo" in "foo.c")
|
||||||
|
|
||||||
also:
|
also:
|
||||||
$+ # prerequisites (all, with duplication)
|
$+ # prerequisites (all, with duplication)
|
||||||
$? # prerequisites (new ones)
|
$? # prerequisites (new ones)
|
||||||
$| # prerequisites (order-only?)
|
$| # prerequisites (order-only?)
|
||||||
$* # basename without extension of the target (?)
|
|
||||||
|
|
||||||
$(@D) # target directory
|
$(@D) # target directory
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue