1######################################################################
2# Makefile.am                                            February 2000
3# Horms                                             horms@verge.net.au
4#
5# perdition
6# Mail retrieval proxy server
7# Copyright (C) 1999-2005  Horms
8#
9# This program is free software; you can redistribute it and/or
10# modify it under the terms of the GNU General Public License as
11# published by the Free Software Foundation; either version 2 of the
12# License, or (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful, but
15# WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17# General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software Foundation,
21# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
22#
23######################################################################
24
25lib_LTLIBRARIES = libperditiondb_gdbm.la
26
27libperditiondb_gdbm_la_SOURCES = \
28  perditiondb_gdbm.c \
29  perditiondb_gdbm.h
30
31libperditiondb_gdbm_la_LDFLAGS    = -version-info 0:0:0
32
33libperditiondb_gdbm_la_LIBADD = -lgdbm
34
35INCLUDES=\
36  -I$(top_srcdir)/ \
37  -I$(top_srcdir)/perdition \
38  -DPERDITIONDB_GDBM_SYSCONFDIR=\"$(sysconfdir)/perdition\"
39