2007-07-04 Marcus Brinkmann <marcus@g10code.de>
[gpgme.git] / assuan / Makefile.am
1 # Assuan Makefile
2 # Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
3 #
4 # This file is part of Assuan.
5 #
6 # Assuan is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU Lesser General Public License as
8 # published by the Free Software Foundation; either version 2.1 of
9 # the License, or (at your option) any later version.
10 #
11 # Assuan is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # Lesser General Public License for more details.
15 #
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 
19
20 ## Process this file with automake to produce Makefile.in
21
22 EXTRA_DIST = mkerrors
23 INCLUDES = -I.. -I$(top_srcdir)/gpgme
24 BUILT_SOURCES = assuan-errors.c
25 MOSTLYCLEANFILES = assuan-errors.c
26
27 noinst_LTLIBRARIES = libassuan.la
28
29 AM_CPPFLAGS = -D_ASSUAN_IN_GPGME_BUILD_ASSUAN
30
31 #libassuan_la_LDFLAGS =
32 libassuan_la_SOURCES = \
33         assuan.h \
34         assuan-defs.h \
35         assuan-util.c \
36         assuan-errors.c \
37         assuan-buffer.c \
38         assuan-handler.c \
39         assuan-inquire.c \
40         assuan-listen.c \
41         assuan-connect.c \
42         assuan-client.c \
43         assuan-pipe-server.c \
44         assuan-socket-server.c \
45         assuan-pipe-connect.c \
46         assuan-socket-connect.c  \
47         assuan-uds.c \
48         funopen.c \
49         assuan-io.c \
50         assuan-logging.c \
51         assuan-socket.c
52
53 assuan-errors.c : assuan.h mkerrors
54         $(srcdir)/mkerrors < $(srcdir)/assuan.h > assuan-errors.c