comparison src/deliver/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 b13c7888563c
children b77a67169fc5
comparison
equal deleted inserted replaced
5196:f1b735b905f3 5197:e77e4457d95c
45 deliver.c \ 45 deliver.c \
46 duplicate.c \ 46 duplicate.c \
47 mail-send.c \ 47 mail-send.c \
48 smtp-client.c 48 smtp-client.c
49 49
50 noinst_HEADERS = \ 50 headers = \
51 auth-client.h \ 51 auth-client.h \
52 deliver.h \ 52 deliver.h \
53 duplicate.h \ 53 duplicate.h \
54 mail-send.h \ 54 mail-send.h \
55 smtp-client.h 55 smtp-client.h
56
57 if INSTALL_HEADERS
58 pkginc_libdir=$(pkgincludedir)/src/deliver
59 pkginc_lib_HEADERS = $(headers)
60 else
61 noinst_HEADERS = $(headers)
62 endif