Re: Uppercasing files

2001-01-31 Thread Emiliano
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?

Re: Uppercasing files

2001-01-31 Thread Alexandre Oliva
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

Re: Uppercasing files

2001-01-31 Thread Emiliano
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

Re: Uppercasing files

2001-01-30 Thread Tom Tromey
> "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

Uppercasing files

2001-01-30 Thread Emiliano
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-