[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: colon - windows path "C:/Program Files/libtoto.h"
From: |
Eli Zaretskii |
Subject: |
Re: colon - windows path "C:/Program Files/libtoto.h" |
Date: |
Tue, 25 Nov 2008 06:08:28 +0200 |
> Date: Mon, 24 Nov 2008 23:12:00 +0100
> From: "address@hidden" <address@hidden>
> CC: address@hidden
>
> 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.