Alexandre Oliva wrote:
>
> On Jan 31, 2001, Emiliano <[EMAIL PROTECTED]> wrote:
>
> > Tom Tromey wrote:
> >> Write explicit rules.
>
> >> SOMETHING.EXT: something.ext
>
> > Yes, but I'd rather not if it can be avoided.
>
> I'm afraid it can't. Unix is case-sensitive, why shouldn't `make' be?
On Jan 31, 2001, Emiliano <[EMAIL PROTECTED]> wrote:
> Tom Tromey wrote:
>> Write explicit rules.
>> SOMETHING.EXT: something.ext
> Yes, but I'd rather not if it can be avoided.
I'm afraid it can't. Unix is case-sensitive, why shouldn't `make' be?
Well... I suppose you could do something ab
Tom Tromey wrote:
>
> > "Emile" == Emiliano <[EMAIL PROTECTED]> writes:
>
> Emile> I'm trying to create an automake file that has rules to
> Emile> uppercase files. For example I have something.ext and I want
> Emile> it to create a copy SOMETHING.EXT. I tried with this:
>
> Emile> pkgdat
> "Emile" == Emiliano <[EMAIL PROTECTED]> writes:
Emile> I'm trying to create an automake file that has rules to
Emile> uppercase files. For example I have something.ext and I want
Emile> it to create a copy SOMETHING.EXT. I tried with this:
Emile> pkgdata_DATA = SOMETHING.EXT OTHER.EXT
Em
Hi all,
I'm trying to create an automake file that has rules to uppercase files.
For example I have something.ext and I want it to create a copy
SOMETHING.EXT. I tried with this:
pkgdata_DATA = SOMETHING.EXT OTHER.EXT
CLEANFILES = $(pkgdata_DATA)
%.EXT : %.ext
cp -f $< `echo $< | tr a-