automake
[Top][All Lists]
Advanced

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

Re: AM Conditional for SUBDIRS


From: Vikram Ambrose
Subject: Re: AM Conditional for SUBDIRS
Date: Thu, 07 Aug 2008 16:49:58 -0400
User-agent: Thunderbird 2.0.0.14 (X11/20080501)

Monty Taylor wrote:
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
Tried that, does the same thing. Since my extra pkg doesnt get included as a AC_CONFIG_FILES there is no makefile in there. And thats why make dist* doesnt work.

Vikram




reply via email to

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