Go to the first, previous, next, last section, table of contents.
Make itself suffers a great number of limitations, only a few of which being listed here. First of all, remember that since commands are executed by the shell, all its weaknesses are inherited...
$ cat Makefile _am_include = # _am_quote = all:; @echo this is test % make Make: Must be a separator on rules line 2. Stop. $ cat Makefile2 am_include = # am_quote = all:; @echo this is test $ make -f Makefile2 this is test
VPATH
VPATH
causes Sun
@command{make} to only execute the first set of double-colon rules.
Go to the first, previous, next, last section, table of contents.