Re: distribution of BUILT_SOURCES dependencies

2004-01-05 Thread Ralf Corsepius
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 > > loca

distribution of BUILT_SOURCES dependencies

2004-01-04 Thread Warren Turkal
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 - < $< > $@ wt