diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-12-25 15:59:16 +0000 |
---|---|---|
committer | <> | 2015-02-03 11:29:43 +0000 |
commit | 5919c67c0cc46fea1ad0f884c04d7ea8a463fce7 (patch) | |
tree | 860f08eda66df9272df23fe4ba0f79e26560ea88 /compat/Makefile.am | |
download | gdbm-tarball-master.tar.gz |
Diffstat (limited to 'compat/Makefile.am')
-rw-r--r-- | compat/Makefile.am | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/compat/Makefile.am b/compat/Makefile.am new file mode 100644 index 0000000..42554b6 --- /dev/null +++ b/compat/Makefile.am @@ -0,0 +1,54 @@ +# This file is part of GDBM. -*- Makefile -*- +# Copyright (C) 2007, 2011 Free Software Foundation, Inc. +# +# GDBM is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# GDBM is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GDBM. If not, see <http://www.gnu.org/licenses/>. */ + +# Flags +AM_CPPFLAGS=-I$(srcdir)/../src + +# The libraries +VI_CURRENT = 4 +VI_REVISION = 0 +VI_AGE = 0 + +lib_LTLIBRARIES = libgdbm_compat.la +libgdbm_compat_la_LIBADD = ../src/libgdbm.la + +include_HEADERS = dbm.h ndbm.h +noinst_HEADERS = dbm-priv.h + +DBM_CF=\ + dbminit.c\ + delete.c\ + fetch.c\ + store.c\ + seq.c\ + close.c + +NDBM_CF=\ + dbmopen.c\ + dbmdelete.c\ + dbmerr.c\ + dbmfetch.c\ + dbmstore.c\ + dbmseq.c\ + dbmclose.c\ + dbmdirfno.c\ + dbmpagfno.c\ + dbmrdonly.c + +libgdbm_compat_la_SOURCES = $(DBM_CF) $(NDBM_CF) + +libgdbm_compat_la_LDFLAGS = -version-info $(VI_CURRENT):$(VI_REVISION):$(VI_AGE) + |