Re: 'make clean' is removing too many files

2005-04-18 Thread Harald Dunkel
Warren Young wrote: Harald Dunkel wrote: If I add something like lib_LIBRARIES = /some/static/old/lib2install.a ...then you're probably doing something wrong. That should probably go in LDADD. No, LDADD does not help. I have some 3rd party libraries to include into the install

Re: 'make clean' is removing too many files

2005-04-18 Thread Stepan Kasal
Hello, On Mon, Apr 18, 2005 at 03:04:14PM +0200, Harald Dunkel wrote: lib_LIBRARIES = /some/static/old/lib2install.a I have some 3rd party libraries to include into the install target. Currently I cannot add them to lib_LIBRARIES, because then make clean removes them (or at least it

'make clean' is removing too many files

2005-04-15 Thread Harald Dunkel
Hi folks, If I add something like lib_LIBRARIES = /some/static/old/lib2install.a to my Makefile.am, then the generated Makefile includes /some/static/old/lib2install.a in the list of files to remove for the clean target. This is certainly not correct. Only targets that are built by this

Re: 'make clean' is removing too many files

2005-04-15 Thread Warren Young
Harald Dunkel wrote: If I add something like lib_LIBRARIES = /some/static/old/lib2install.a ...then you're probably doing something wrong. That should probably go in LDADD.