[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Using make to create directories
From: |
Ian Lynagh |
Subject: |
Re: Using make to create directories |
Date: |
Sat, 3 Oct 2009 20:49:05 +0100 |
User-agent: |
Mutt/1.5.18 (2008-05-17) |
On Fri, Oct 02, 2009 at 12:56:28PM -0400, Paul Smith wrote:
> On Fri, 2009-10-02 at 16:56 +0100, Ian Lynagh wrote:
> >
> > $ make
> > make: *** No rule to make target `foo/bar', needed by `q'. Stop.
>
> Make strips trailing slashes, to canonicalize names. Use something like
> this instead:
>
> default: a/b/c/.; echo bye
>
> %/. : ; echo hi
Thanks, that did the trick.
Thanks
Ian