This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: Re: Installing header files
- To: automake at gnu dot org
- Subject: Re: Re: Installing header files
- From: Olefirenko Alexander <bofh at rbc dot ru>
- Date: Tue, 7 Aug 2001 11:50:15 +0400
- List-Id: Discussion list for automake <automake.gnu.org>
- Organization: RBC Co.
- Reply-To: bofh at rbc dot ru
>>>>> ">" == Olefirenko Alexander <bofh@rbc.ru> writes:
>>>> I need to install header files as they are in source tree :
>>>> src
>>>> src/config
>>>> src/parser and so on.
>>With automake 1.5, use this:
>>
>> nobase_include_HEADERS = src/foo.h src/config/foo.h src/parser/foo.h
>>
>>With automake 1.4 use new variables:
>>
>> h1dir = $(includedir)/src
>> h1_HEADERS = src/foo.h
>> h2dir = $(h1dir)/config
>> h2_HEADERS = src/config/foo.h
>>Tom
Sorry, but i have Makefile.am in each of . ./src ./src/config and so on.
So where should i put these variables (automake version 1.4) ?