[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Installing header files
From: |
Tom Tromey |
Subject: |
Re: Installing header files |
Date: |
06 Aug 2001 20:23:26 -0600 |
>>>>> ">" == Olefirenko Alexander <address@hidden> 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