Hello.
I'm not 100% sure if it is the right group to ask but I'll try.
I'm trying to compile program which is built condinally. So my Makefile.am
looks like this:
EXTRA_PROGRAMS=foo
[EMAIL PROTECTED]@
correspoding configure.in:
if (certain condidtions)
FOO=foo
AC_SUBST(F
On Thu, Aug 11, 2005 at 08:11:51AM -0400, tom fogal wrote:
> <[EMAIL PROTECTED]>D M writes:
> > Is is perfectly legal to have following conditional in
> >Makefile.am:
> >
> >if SOMETHING
> >install-data-local:
> > anything
> >e
Hello.
Is is perfectly legal to have following conditional in
Makefile.am:
if SOMETHING
install-data-local:
anything
endif
So far it works for me be I must be sure that I'm not doing
anything which is discouraged, violating some conventions or
simply might not work.
Tha