automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Uppercasing files


From: Tom Tromey
Subject: Re: Uppercasing files
Date: 30 Jan 2001 21:28:01 -0700

>>>>> "Emile" == Emiliano  <address@hidden> 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
Emile> CLEANFILES = $(pkgdata_DATA)
Emile> %.EXT : %.ext
Emile>  cp -f $< `echo $< | tr a-z A-Z`

Emile> but that doesn't work since no file SOMETHING.ext exists. How
Emile> so I go about this?

Write explicit rules.

SOMETHING.EXT: something.ext
    ...

Tom



reply via email to

[Prev in Thread] Current Thread [Next in Thread]