> 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. _______________________________________________ Make-w32 mailing list [email protected] http://lists.gnu.org/mailman/listinfo/make-w32
