Re: How to auto probe a directory

2013-01-11 Thread David Yu
Hi Stefano: Thank you very much,I have realized my idea according your suggestion, The patch will be merged by skyeye(www.skyeye.org). i have configure.in include auto-probe.m4, I will probe all sub-directory and fill "AC_CONFIG_FILES([Makefile])" into auto-probe.m4 after I create a devic

Re: How to auto probe a directory

2013-01-09 Thread David Yu
2013/1/9 Stefano Lattarini > On 01/06/2013 09:45 AM, David Yu wrote: > > Hi guys: > > I want my project auto probe the Makefile.am entry all > > directories, if a directory has Makefile.am, I will create Makefile.in > > with automake. > > > Your best bet is to create a bootstrap script

Re: How to auto probe a directory

2013-01-09 Thread Stefano Lattarini
On 01/06/2013 09:45 AM, David Yu wrote: > Hi guys: > I want my project auto probe the Makefile.am entry all > directories, if a directory has Makefile.am, I will create Makefile.in > with automake. > Your best bet is to create a bootstrap script that prepares this information for autocon

How to auto probe a directory

2013-01-06 Thread David Yu
Hi guys: I want my project auto probe the Makefile.am entry all directories, if a directory has Makefile.am, I will create Makefile.in with automake. After that, I will create Makefile with configure. Here is my key codes of configure.in and Makefile.am ---