1#
2# Content Simulation Module
3#
4
5noinst_LIBRARIES = \
6	libcsm.a
7
8libcsm_a_SOURCES = \
9	BodyIter.h \
10	BodyIter.cc \
11	ContentCfg.h \
12	ContentCfg.cc \
13	TextDbase.h \
14	TextDbase.cc \
15	ContentDbase.h \
16	ContentDbase.cc \
17	ContentMgr.h \
18	ContentMgr.cc \
19	ContentTypeIdx.h \
20	ContentTypeIdx.cc \
21	ContentSel.h \
22	ContentSel.cc \
23	EmbedContMdl.h \
24	EmbedContMdl.cc \
25	ObjLifeCycle.h \
26	ObjLifeCycle.cc \
27	RamFile.h \
28	RamFiles.h \
29	RamFiles.cc \
30	\
31	InjectIter.h \
32	InjectIter.cc \
33	\
34	RndBodyIter.h \
35	RndBodyIter.cc \
36	CdbBodyIter.h \
37	CdbBodyIter.cc \
38	ContainerBodyIter.h \
39	ContainerBodyIter.cc \
40	RamFileBodyIter.h \
41	RamFileBodyIter.cc \
42	\
43	GzipEncoder.h \
44	GzipEncoder.cc \
45	cdbBuilders.h \
46	cdbBuilders.cc \
47	\
48	XmlTagIdentifier.h \
49	XmlTagIdentifier.cc \
50	XmlTagParser.h \
51	XmlTagParser.cc \
52	XmlParser.h \
53	XmlParser.cc \
54	\
55	cdbEntries.h \
56	cdbEntries.cc \
57	oid2Url.h \
58	oid2Url.cc \
59	\
60	RangeBodyIter.h \
61	RangeBodyIter.cc
62
63bin_PROGRAMS = \
64	cdb
65
66dist_man1_MANS = \
67	cdb.man
68
69EXTRA_DIST = \
70	cdb.h2m
71
72cdb_SOURCES = \
73	cdb.cc
74
75LDADD = \
76	libcsm.a \
77	\
78	../runtime/libruntime.a \
79	../pgl/libpgl.a \
80	../xparser/libxparser.a \
81	../base/libbase.a \
82	../xstd/libxstd.a
83
84
85
86include $(top_srcdir)/common.am
87