Reorganize code to have single TID protocol (no separate TPQ protocol).
[trust_router.git] / Makefile.am
1 bin_PROGRAMS= tr/tr tid/example/tidc tid/example/tids common/dh_test/dh_test
2 AM_CPPFLAGS=-I$(srcdir)/include
3 SUBDIRS = gsscon 
4
5 tr_tr_SOURCES = tr/tr_main.c \
6 tid/tidc.c \
7 tid/tids.c \
8 common/tr_name.c \
9 common/tr_msg.c \
10 common/tr_dh.c \
11 common/tr_config.c 
12
13 tr_tr_LDADD = gsscon/libgsscon.la
14
15 tid_example_tidc_SOURCES = tid/example/tidc_main.c \
16 tid/tidc.c \
17 common/tr_name.c \
18 common/tr_msg.c \
19 common/tr_dh.c
20
21 tid_example_tidc_LDADD = gsscon/libgsscon.la
22
23 tid_example_tids_SOURCES = tid/example/tids_main.c \
24 tid/tids.c \
25 common/tr_name.c \
26 common/tr_msg.c \
27 common/tr_dh.c
28
29 tid_example_tids_LDADD = gsscon/libgsscon.la
30
31 common_dh_test_dh_test_SOURCES = common/tr_dh.c \
32 common/dh_test/dh_test.c
33