Re: colon - windows path "C:/Program Files/libtoto.h"
Eli Zaretskii <[email protected]>
| Newsgroups | gmane.comp.gnu.make.windows |
|---|---|
| Message-ID | <[email protected]> |
> Date: Mon, 24 Nov 2008 07:32:02 +0100 > From: "[email protected]" <[email protected]> > CC: [email protected] > > This makefile don't works : > ------------------------------------------------ > > all:: toto.o > @echo ---- all ---- > > toto.o : toto.c "c:/toto.h" > @echo ----- toto.o ----- > cl /c toto.c Remove the quotes around c:/toto.h, and it should work. You don't need the quotes, and Make in general doesn't support quoted file names in dependencies.