blob: df9d6cedec90a98df259fa6024ea72f170ba6994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
AM_CPPFLAGS = -I$(srcdir)/../inc -I$(top_srcdir)/include
# libtcm_s is the shared part of the library pulled into libapi_s.
# libtcmmain and libtcmchild basically provide main() for tests or their
# children.
noinst_LTLIBRARIES = libtcm_s.la libtcm.la libtcmmain.la libtcmchild.la
libtcm_s_la_SOURCES = \
ictp.c
libtcm_la_SOURCES = \
child.c \
ckversion.c \
dynlink.c \
tcmfuncs.c
# When linking to either of these libraries, remember to link libapi.la
# after them
libtcmmain_la_SOURCES = tcm.c dtcm.c
libtcmchild_la_SOURCES = tcmchild.c
# These didn't get compiled before the autotools conversion
# tcm_bs.c
# tcm_in.c
# tcmrem.c
# tcm_xt.c
|