autoconf
[Top][All Lists]
Advanced

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

Re: How to specify Makefile in configure.ac for private (factory only) d


From: rjbriody
Subject: Re: How to specify Makefile in configure.ac for private (factory only) directory?
Date: Wed, 13 Jan 2010 13:52:09 -0800 (PST)

Yes that works. Thank you very much!



Russ Allbery wrote:
> 
> rjbriody <address@hidden> writes:
> 
>> I am specifying my Makefiles in configure.ac:
> 
>> AC_CONFIG_FILES([Makefile
>>                                  private/Makefile])
> 
>> However, I remove the private directory during "make dist". This causes a
>> ./configure in the distributed package to fail because
>> private/Makefile.in
>> does not exist. How do I add flexibility for directories to configure.ac? 
> 
> Does:
> 
>     AS_IF([test -d private], [AC_CONFIG_FILES([private/Makefile])])
> 
> work?  (You can have multiple AC_CONFIG_FILES invocations.)
> 
> -- 
> Russ Allbery (address@hidden)             <http://www.eyrie.org/~eagle/>
> 
> 
> _______________________________________________
> Autoconf mailing list
> address@hidden
> http://lists.gnu.org/mailman/listinfo/autoconf
> 
> 

-- 
View this message in context: 
http://old.nabble.com/How-to-specify-Makefile-in-configure.ac-for-private-%28factory-only%29-directory--tp27150108p27152669.html
Sent from the Gnu - Autoconf - General mailing list archive at Nabble.com.





reply via email to

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