Makefile.am
379 Bytes
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
AM_LDFLAGS += -lpthread
HASH = hash.c add.c get.c get_first.c delete.c each.c value.c \
cleanup.c interface/hashable.c
noinst_LTLIBRARIES = libhash.la
libhash_la_SOURCES = $(HASH)
libhash_la_CFLAGS = $(AM_CFLAGS)
libhash_la_LIBADD = $(AM_LDFLAGS)