This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

`make install' and $(BUILT_SOURCES)


Hi,

I found a problem running `make install' in my project.
It contain generation of valued file (needed to success compile sources) as 
BUILT_SOURCES definition. Targes such as `all' and `check' work fine, except 
`install', becouse it is not depended on $(BUILT_SOURCES).

As I can see in generated Makefile there is no way to make $(BUILT_SOURCES) if 
`make install' running on "clean" source tree (i.e. typing `make install' 
just after ./configure)
So... my suggestion: Why not to change `install' rule like this:

install: $(BUILT_SOURCES)
        $(MAKE) $(AM_MAKEFLAGS) install-recursive

such as `all' and `check' defined... ???




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]