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 23:12:00 +0100 > From: "[email protected]" <[email protected]> > CC: [email protected] > > How do I dependence to a library file which is located in "C:/Program Files/toto.h" ? This has nothing to do with colons in file names: Make simply does not support file names with spaces, on any platform, Unix or Windows, because a space is a delimiter in Makefile syntax. On Windows, you can use the 8+3 short alias, C:/PROGRA~1/toto.h, to work around this limitation.