Jeff Safier wrote:
Yes I understand this, but how do I do it using automake or how do I
imbed this within my Makefile.am
Yes, that goes in Makefile.am, just as you saw it.
--Pat
Jeff Safier wrote:
My question was not in terms of building and executable, but how to
imbed an executable command into the make, that will run when executing
the make. We have a message parser that generates a header file which
is included in the actual source file. I need to make sure our mes
Hello,
My configure.in has the following snippet:
---
PKGDATADIR=`eval echo "${datadir}/$PACKAGE"`
AC_SUBST(PKGDATADIR)
AC_DEFINE_UNQUOTED(CONFIG_DATA_DIR, "$PKGDATADIR",
[The directory where our data will be installed])
---
Hello,
I have an autotooled project that has a structure like so:
top
src
engine
front-end
tools
tool1
tool2
(...)
I would like to include the src/tools directory in the distribution, but
all of the tools are perl scripts. It seems wasteful to be making
Makefile.a