summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 181ad4fc83982951b4a01c3a6e9dcd50727ce87b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
INCLUDES = -I$(top_srcdir)
CFLAGS = @CFLAGS@ -std=gnu99

h_sources = itzam.h

cpp_sources = itzam_util.c itzam_data.c itzam_btree.c

lib_LTLIBRARIES = libitzam.la

libitzam_la_SOURCES = $(h_sources) $(cpp_sources)
libitzam_la_LDFLAGS= -version-info $(GENERIC_LIBRARY_VERSION) -release $(GENERIC_RELEASE)

library_includedir=$(includedir)/$(GENERIC_LIBRARY_NAME)
library_include_HEADERS = $(h_sources)

DEFS = -I. -I$(srcdir)