I have a intermediary source file foobar.c
which is automatically generated from foobar.c.in
via a sed script. The dist
target created via autotools includes foobar.c
in the generated tarballs. What do I do in Makefile.am
or in configure.ac
to exclude foobar.c
?
automake: exclude intermediary source file from "dist" tarballs
673 Views Asked by Matthew Cline At
2
There are 2 best solutions below
0

I solved my problem by changing from using a sed script to modify foobar.c.in
to having configure
determine the needed strings and stick them into config.h
, which is included by a non-intermediary version of foobar.c
. config.h
isn't included in the tarballs.
However, it still seems like there should be some method to tell autotools to exclude certain files from the dist tarballs.
The solution is actually quite simple
This way automake knows that
foobar.c
is generated at build time, and since it's innodist_
it won't be redistributed.Although depending on what kind of string you're talking about a common way to solve it is to use a preprocessor macro and have it passed as
CPPFLAGS
and then just use
SOMESTRING
in the code and let the preprocessor handle it.