This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: distribution of BUILT_SOURCES dependencies
- From: Ralf Corsepius <corsepiu at faw dot uni-ulm dot de>
- To: Automake List <automake at gnu dot org>
- Date: Mon, 05 Jan 2004 08:44:55 +0100
- Subject: Re: distribution of BUILT_SOURCES dependencies
- Organization: FAW Ulm
- References: <bt968b$vnl$1@sea.gmane.org>
On Sun, 2004-01-04 at 14:59, Warren Turkal wrote:
> I have the following in a Makefile.am, but the locale.alias.pre is not being
> distributed. How do I fix that?
>
> x11localedir = @X11_LOCALEDIR@
>
> BUILT_SOURCES=locale.alias
> CLEANFILES=locale.alias
>
> x11locale_DATA=locale.alias
>
> locale.alias: locale.alias.pre
> $(CPP) -traditional - < $< > $@
EXTRA_DIST = locale.alias.pre
Ralf