automake
[Top][All Lists]
Advanced

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

Re: Multiple install targets


From: Marwan Badawi
Subject: Re: Multiple install targets
Date: Tue, 13 Dec 2005 15:16:33 +0100
User-agent: Mozilla Thunderbird 1.0.7 (X11/20050923)

Thanks to Ralf for pointing me in the right direction. I actually did something much simpler though, and it works.

In the root Makefile.am I added the following rule:

install-libonly:
        cd path/to/my/library && $(MAKE) $(AM_MAKEFLAGS) install-libonly

And in the library's Makefiles.am:

install-libonly: Makefile $(lib_LTLIBRARIES) $(include_HEADERS)
        @$(MAKE) $(AM_MAKEFLAGS) install-libLTLIBRARIES install-includeHEADERS

And it works.

Thanks again for your help Ralf.

Marwan




reply via email to

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