Hi!

Just found an error in the manual of GNU Make 3.79.

Section "Phony Targets"
(http://www.gnu.org/manual/make/html_mono/make.html#SEC33) contains the
following example:

### MANUAL EXAMPLE - START ###
SUBDIRS = foo bar baz

.PHONY: subdirs $(SUBDIRS)

subdirs: $(SUBDIRS)

$(SUBDIRS):
        $(MAKE) -C $

foo: baz
### MANUAL EXAMPLE - END ###

The antepenultimate line of this example should presumably read:

        $(MAKE) -C $@

Best regards,
Antoine Trux

_______________________________________________
Bug-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-make

Reply via email to