comparison src/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 ff2272c228cc
children 4862cb37106c
comparison
equal deleted inserted replaced
5196:f1b735b905f3 5197:e77e4457d95c
86 mail-storage-callbacks.c \ 86 mail-storage-callbacks.c \
87 main.c \ 87 main.c \
88 namespace.c 88 namespace.c
89 89
90 90
91 noinst_HEADERS = \ 91 headers = \
92 client.h \ 92 client.h \
93 commands.h \ 93 commands.h \
94 commands-util.h \ 94 commands-util.h \
95 common.h \ 95 common.h \
96 imap-expunge.h \ 96 imap-expunge.h \
99 imap-search.h \ 99 imap-search.h \
100 imap-sort.h \ 100 imap-sort.h \
101 imap-sync.h \ 101 imap-sync.h \
102 imap-thread.h \ 102 imap-thread.h \
103 namespace.h 103 namespace.h
104
105 if INSTALL_HEADERS
106 pkginc_libdir=$(pkgincludedir)/src/imap
107 pkginc_lib_HEADERS = $(headers)
108 else
109 noinst_HEADERS = $(headers)
110 endif