On 06/12/2013 06:06 PM, Avneet Kaur wrote:
> We use SUBDIRS to specify the sub directories in Makefile.am file like
>
> SUBDIRS = src doc examples bindings
Makefile.am is managed by automake, not autoconf. You might get better
answers by asking on the automake list.
--
Eric Blake eblake redh
On Wed, Jun 12, 2013 at 10:36 PM, Avneet Kaur wrote:
> But I want to remove doc from default option like it will run by "make
> doc" target only.
>
> This is looking for what step or variable??
For this, DIST_SUBDIRS is a right solution?
--
Avneet Kaur
www.avneetkhasla.wordpress.com
__
We use SUBDIRS to specify the sub directories in Makefile.am file like
SUBDIRS = src doc examples bindings
Run "make" will compile the makefile under these directories by default.
But I want to remove doc from default option like it will run by "make
doc" target only.
This is looking for what s