Shouldn’t TAGS depend upon and use BUILT_SOURCES?

2012-10-29 Thread Nikolai Weibull
Hi! Shouldn’t TAGS depend upon and use BUILT_SOURCES? For example, header files generated by yacc/bison may include things that one would want tagged.

IF condition inside Makefile.am

2012-10-29 Thread The_Jav
Hello, I would like to create an if condition. But it works partially : libmy_lib_SOURCES = source.c if HAVE_IPP libmy_lib_SOURCES += ipp.c endif when the HAVE_IPP is false, the makefile created is different than a makefile created with only libmy_lib_SOURCES = sources.c why ? -- View this

Re: IF condition inside Makefile.am

2012-10-29 Thread Bob Friesenhahn
On Mon, 29 Oct 2012, The_Jav wrote: I would like to create an if condition. But it works partially : libmy_lib_SOURCES = source.c if HAVE_IPP libmy_lib_SOURCES += ipp.c endif when the HAVE_IPP is false, the makefile created is different than a makefile created with only libmy_lib_SOURCES =

Re: IF condition inside Makefile.am

2012-10-29 Thread Daniel Herring
On Mon, 29 Oct 2012, The_Jav wrote: I would like to create an if condition. But it works partially : libmy_lib_SOURCES = source.c if HAVE_IPP libmy_lib_SOURCES += ipp.c endif when the HAVE_IPP is false, the makefile created is different than a makefile created with only libmy_lib_SOURCES =