automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: AM Conditional for SUBDIRS


From: Monty Taylor
Subject: Re: AM Conditional for SUBDIRS
Date: Thu, 07 Aug 2008 12:02:47 -0700
User-agent: Thunderbird 2.0.0.16 (X11/20080724)

Vikram Ambrose wrote:
> I have a problem trying to conditional include a subdir into a build
> configuration or not.
> 
> I have tried two things.
> 1)
> -------------------------------------------------
> SUBDIRS = pkgA pkgB
> 
> if BUILD_pkgC
>   SUBDIRS += pkgC
> endif
> -------------------------------------------------
> 
> 
> 2)
> -------------------------------------------------
> SUBDIRS = pkgA pkgB $(extra_pkgs)
> 
> extra_pkgs =
> if BUILD_pkgC
>   extra_pkgs += pkgC
> endif
> -------------------------------------------------
> 
> 
> Both of which work, for make; make install; make clean; but when i try
> to make dist or make distclean, they fail. I do a test in configure.ac
> to conditional set AC_CONFIG_FILES([pkgc/Makefile])
> 
> How do I do this properly?

You need to add the dir into DIST_SUBDIRS variable




reply via email to

[Prev in Thread] Current Thread [Next in Thread]