comparison src/lib-imap/Makefile.am @ 5197:e77e4457d95c HEAD

Added --with-headers configure option to install .h files.
author Timo Sirainen <tss@iki.fi>
date Thu, 22 Feb 2007 23:50:46 +0200
parents fb7f862194b5
children 56f55bd35aa5
comparison
equal deleted inserted replaced
5196:f1b735b905f3 5197:e77e4457d95c
13 imap-match.c \ 13 imap-match.c \
14 imap-quote.c \ 14 imap-quote.c \
15 imap-parser.c \ 15 imap-parser.c \
16 imap-util.c 16 imap-util.c
17 17
18 noinst_HEADERS = \ 18 headers = \
19 imap-base-subject.h \ 19 imap-base-subject.h \
20 imap-bodystructure.h \ 20 imap-bodystructure.h \
21 imap-date.h \ 21 imap-date.h \
22 imap-envelope.h \ 22 imap-envelope.h \
23 imap-match.h \ 23 imap-match.h \
24 imap-quote.h \ 24 imap-quote.h \
25 imap-parser.h \ 25 imap-parser.h \
26 imap-util.h 26 imap-util.h
27
28 if INSTALL_HEADERS
29 pkginc_libdir=$(pkgincludedir)/src/lib-imap
30 pkginc_lib_HEADERS = $(headers)
31 else
32 noinst_HEADERS = $(headers)
33 endif