programs/dtinfo: add automake files
This commit is contained in:
24
cde/programs/dtinfo/DtMmdb/Makefile.am
Normal file
24
cde/programs/dtinfo/DtMmdb/Makefile.am
Normal file
@@ -0,0 +1,24 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
SUBDIRS = \
|
||||
api btree \
|
||||
btree_berkeley compression \
|
||||
diskhash dstr \
|
||||
dti_excs dynhash \
|
||||
hmphf index \
|
||||
mgrs misc \
|
||||
object oliasdb \
|
||||
schema storage \
|
||||
utility
|
||||
|
||||
lib_LTLIBRARIES = libDtMmdb.la
|
||||
|
||||
libDtMmdb_la_SOURCES =
|
||||
|
||||
libDtMmdb_la_LIBADD += libapi.la libbtree.la libbtree_berkeley.la \
|
||||
libcompression.la libdiskhash.la libdstr.la \
|
||||
libdti_excs.la libdynhash.la libhmphf.la libindex.la \
|
||||
libmgrs.la libmisc.la libobject.la liboliasdb.la \
|
||||
libschema.la libstorage.la libutility.la
|
||||
|
||||
libDtMmdb_la_LDFLAGS = -version-info 2:1:0
|
||||
8
cde/programs/dtinfo/DtMmdb/api/Makefile.am
Normal file
8
cde/programs/dtinfo/DtMmdb/api/Makefile.am
Normal file
@@ -0,0 +1,8 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libapi.la
|
||||
|
||||
libapi_la_CXXFLAGS = -DC_API -I.. -I../misc -I../dti_excs
|
||||
|
||||
libapi_la_SOURCES = base.C info_base.C info_lib.C smart_ptr.C transaction.C \
|
||||
utility.C
|
||||
7
cde/programs/dtinfo/DtMmdb/btree/Makefile.am
Normal file
7
cde/programs/dtinfo/DtMmdb/btree/Makefile.am
Normal file
@@ -0,0 +1,7 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libbtree.la
|
||||
|
||||
libbtree_la_CXXFLAGS = -DC_API -I.. -I../dti_excs
|
||||
|
||||
libbtree_la_SOURCES = mmdb_btree.C
|
||||
17
cde/programs/dtinfo/DtMmdb/btree_berkeley/Makefile.am
Normal file
17
cde/programs/dtinfo/DtMmdb/btree_berkeley/Makefile.am
Normal 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
|
||||
8
cde/programs/dtinfo/DtMmdb/compression/Makefile.am
Normal file
8
cde/programs/dtinfo/DtMmdb/compression/Makefile.am
Normal file
@@ -0,0 +1,8 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libcompression.la
|
||||
|
||||
libcompression_la_CXXFLAGS = -DC_API -I.. -I../dti_excs
|
||||
|
||||
libcompression_la_SOURCES = abs_agent.C zip.C huffman.C trie.C code.C lzss.C \
|
||||
sgml.C ps.C
|
||||
7
cde/programs/dtinfo/DtMmdb/diskhash/Makefile.am
Normal file
7
cde/programs/dtinfo/DtMmdb/diskhash/Makefile.am
Normal file
@@ -0,0 +1,7 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libdiskhask.la
|
||||
|
||||
libdiskhash_la_CXXFLAGS = -DC_API -I.. -I../dti_excs
|
||||
|
||||
libdiskhash_la_SOURCES = disk_bucket.C bucket_array.C disk_hash.C
|
||||
10
cde/programs/dtinfo/DtMmdb/dstr/Makefile.am
Normal file
10
cde/programs/dtinfo/DtMmdb/dstr/Makefile.am
Normal file
@@ -0,0 +1,10 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libdstr.la
|
||||
|
||||
libdstr_la_CXXFLAGS = -DC_API -I.. -I../dti_excs
|
||||
|
||||
libdstr_la_SOURCES = set.C bset.C slist.C dlist_cell.C dlist.C heap.C \
|
||||
void_ptr_array.C void_ptr_stack.C memory_pool.C \
|
||||
dstr_test.C index_agent.C token_stack.C \
|
||||
slist_char_ptr_cell.C
|
||||
12
cde/programs/dtinfo/DtMmdb/dti_excs/Makefile.am
Normal file
12
cde/programs/dtinfo/DtMmdb/dti_excs/Makefile.am
Normal file
@@ -0,0 +1,12 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libdti_excs.la
|
||||
|
||||
libdti_excs_la_CXXFLAGS = -DC_API -DCC_VERSION=30 -DCHECK_INITIALIZED
|
||||
|
||||
if SUN
|
||||
libdti_excs_la_CXXFLAGS += -DHAS_TERMINATE
|
||||
endif
|
||||
|
||||
libdti_excs_la_SOURCES = Jump_Environment.C Exceptions.C Exception.C \
|
||||
Destructable.C terminate.C init.C
|
||||
7
cde/programs/dtinfo/DtMmdb/dynhash/Makefile.am
Normal file
7
cde/programs/dtinfo/DtMmdb/dynhash/Makefile.am
Normal file
@@ -0,0 +1,7 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libdynhash.la
|
||||
|
||||
libdynhash_la_CXXFLAGS = -DC_API -I.. -I../dti_excs
|
||||
|
||||
libdynhash_la_SOURCES = data_t.C imp_bucket.C imp_die.C
|
||||
8
cde/programs/dtinfo/DtMmdb/hmphf/Makefile.am
Normal file
8
cde/programs/dtinfo/DtMmdb/hmphf/Makefile.am
Normal file
@@ -0,0 +1,8 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libhmphf.la
|
||||
|
||||
libhmphf_la_CXXFLAGS = -DC_API -DPORTABLE_DB -I.. -I../dti_excs
|
||||
|
||||
libhmphf_la_SOURCES = buckets.C mphf_funcs.C mphf_hash_table.C \
|
||||
params.C pattern.C sorter.C
|
||||
9
cde/programs/dtinfo/DtMmdb/index/Makefile.am
Normal file
9
cde/programs/dtinfo/DtMmdb/index/Makefile.am
Normal file
@@ -0,0 +1,9 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libindex.la
|
||||
|
||||
libindex_la_CXXFLAGS = -DC_API -DPORTABLE_DB -I.. -I../dti_excs
|
||||
|
||||
libindex_la_SOURCES = btree_index.C dyn_disk_index.C dyn_index.C \
|
||||
dyn_memory_index.C fast_mphf.C hash.C index.C \
|
||||
inv_lists.C mphf_index.C
|
||||
8
cde/programs/dtinfo/DtMmdb/mgrs/Makefile.am
Normal file
8
cde/programs/dtinfo/DtMmdb/mgrs/Makefile.am
Normal file
@@ -0,0 +1,8 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libmgrs.la
|
||||
|
||||
libmgrs_la_CXXFLAGS = -DC_API -DCOMPACTED_DISK_REP -DPORTABLE_DB -I.. \
|
||||
-I../dti_excs
|
||||
|
||||
libmgrs_la_SOURCES = managers.C misc.C query_mgr.C template_mgr.C
|
||||
7
cde/programs/dtinfo/DtMmdb/misc/Makefile.am
Normal file
7
cde/programs/dtinfo/DtMmdb/misc/Makefile.am
Normal file
@@ -0,0 +1,7 @@
|
||||
MAINTAINERCLEANFILES= Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libmisc.la
|
||||
|
||||
libmisc_la_CFLAGS = -DPORTABLE_DB
|
||||
|
||||
libmisc_la_SOURCES = unique_id.c
|
||||
12
cde/programs/dtinfo/DtMmdb/object/Makefile.am
Normal file
12
cde/programs/dtinfo/DtMmdb/object/Makefile.am
Normal file
@@ -0,0 +1,12 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libobject.la
|
||||
|
||||
libobject_la_CXXFLAGS = -DC_API -DPORTABLE_DB -I.. -I../dti_excs
|
||||
|
||||
libobject_la_SOURCES = composite.C compressed_pstring.C cset.C \
|
||||
dl_list.C dl_list_cell.C handler.C \
|
||||
integer.C long_pstring.C oid.C \
|
||||
oid_list.C oid_t.C primitive.C \
|
||||
pstring.C random_gen.C root.C \
|
||||
short_list.C tuple.C
|
||||
34
cde/programs/dtinfo/DtMmdb/oliasdb/Makefile.am
Normal file
34
cde/programs/dtinfo/DtMmdb/oliasdb/Makefile.am
Normal file
@@ -0,0 +1,34 @@
|
||||
infolibdir = ${prefix}/infolib
|
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
infolib_PROGRAMS = mmdb.infolib.spec
|
||||
|
||||
noinst_LTLIBRARIES = liboliasdb.la
|
||||
|
||||
liboliasdb_la_CXXFLAGS = -DC_API -DNO_DB_LOCK -DCDE_NEXT -I.. -I../misc \
|
||||
-I../dti_excs -I../dti_cc -I../..
|
||||
|
||||
liboliasdb_la_SOURCES = asciiIn_filters.C collectionIterator.C \
|
||||
dlp_hd.C dlp_test.C \
|
||||
doc_hd.C doc_test.C \
|
||||
graphic_hd.C graphic_test.C \
|
||||
loc_test.C locator_hd.C \
|
||||
mark.C mark_base.C \
|
||||
mark_test.C mmdb.C \
|
||||
node_hd.C node_test.C \
|
||||
olias_funcs.C olias_test.C \
|
||||
stylesheet_hd.C stylesheet_test.C \
|
||||
toc_hd.C toc_test.C \
|
||||
user_base.C c_api_book.C \
|
||||
c_api_book_test.C \
|
||||
c_api_bookcase.C c_api_bookcase_test.C \
|
||||
c_api_common.C \
|
||||
c_api_dlp.C c_api_dlp_test.C \
|
||||
c_api_graphic.C c_api_graphic_test.C \
|
||||
c_api_infolib.C c_api_infolib_test.C \
|
||||
c_api_locator.C c_api_locator_test.C \
|
||||
c_api_pure_virtual.C \
|
||||
c_api_section.C c_api_section_test.C \
|
||||
c_api_stylesheet.C c_api_stylesheet_test.C \
|
||||
c_api_toc.C c_api_toc_test.C
|
||||
10
cde/programs/dtinfo/DtMmdb/schema/Makefile.am
Normal file
10
cde/programs/dtinfo/DtMmdb/schema/Makefile.am
Normal file
@@ -0,0 +1,10 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libschema.la
|
||||
|
||||
libschema_la_CXXFLAGS = -DC_API -DPORTABLE_DB -I.. -I../dti_excs -I../misc
|
||||
|
||||
libschema_la_SOURCES = desc.C store_desc.C object_dict.C stored_object_desc.C \
|
||||
index_desc.C inv_desc.C agent_desc.C container_desc.C \
|
||||
sheet.C token.C
|
||||
11
cde/programs/dtinfo/DtMmdb/storage/Makefile.am
Normal file
11
cde/programs/dtinfo/DtMmdb/storage/Makefile.am
Normal file
@@ -0,0 +1,11 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libstorage.la
|
||||
|
||||
libstorage_la_CXXFLAGS = -DC_API -DPORTABLE_DB -I.. -I../dti_excs
|
||||
|
||||
libstorage_la_SOURCES = abs_storage.C chunks_index.C heap_comp_funcs.C \
|
||||
lru.C page.C page_cache.C \
|
||||
page_rep.C page_storage.C rep_cell.C \
|
||||
rep_policy.C store_test.C unixf_storage.C \
|
||||
version.C vm_storage.C
|
||||
13
cde/programs/dtinfo/DtMmdb/utility/Makefile.am
Normal file
13
cde/programs/dtinfo/DtMmdb/utility/Makefile.am
Normal file
@@ -0,0 +1,13 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
noinst_LTLIBRARIES = libutility.la
|
||||
|
||||
libutility_la_CXXFLAGS = -DC_API -DPORTABLE_DB -I.. -I../dti_excs -I../misc
|
||||
|
||||
libutility_la_SOURCES = funcs.C ostring.C pm_random.C \
|
||||
atoi_pearson.C xtime.C buffer.C \
|
||||
atoi_larson.C atomic_lock.C rw_lock.C \
|
||||
atoi_fast.C filter.C mmdb_exception.C \
|
||||
randomize.C streambuf.C charbuf.C \
|
||||
filebuf.C string.C stringstream.C \
|
||||
iostream.C fstream.C stream.C ios.C
|
||||
Reference in New Issue
Block a user