make target conflict
"James" <[email protected]>
| Newsgroups | gmane.comp.gnu.utils |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <[email protected]> |
A sample makefile (Unix):
all: T aa/../T
T:
@echo $@
aa/../T:
@echo $@
Should make complain about the duplicate targets?
James