programs/dtinfo: add automake files

This commit is contained in:
Chase
2019-10-23 14:26:33 -05:00
committed by Jon Trulson
parent f8ba07efd1
commit 4e254aee74
35 changed files with 396 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
MAINTAINERCLEANFILES = Makefile.in
noinst_LTLIBRARIES = libbtree_berkeley.la
libbtree_berkeley_la_CFLAGS = -DMEMMOVE -I..
if AIX
MEMMOVE =
else
MEMMOVE = memmove.c
endif
libbtree_berkeley_la_SOURCES = bt_close.c bt_conv.c bt_debug.c bt_delete.c \
bt_get.c bt_open.c bt_overflow.c bt_page.c \
bt_put.c bt_search.c bt_seq.c bt_split.c \
bt_stack.c bt_utils.c $(MEMMOVE) mktemp.c \
realloc.c snprintf.c mpool.c db.c