Update geoip files to match ipfire location db, 2023/07/12.
[tor.git] / src / trunnel / include.am
blob8154a5e93257fb8f548a289c2523e200b2ac103b
1 noinst_LIBRARIES += \
2         src/trunnel/libor-trunnel.a
4 if UNITTESTS_ENABLED
5 noinst_LIBRARIES += \
6         src/trunnel/libor-trunnel-testing.a
7 endif
9 TRUNNELINPUTS = \
10         src/trunnel/ed25519_cert.trunnel \
11         src/trunnel/extension.trunnel \
12         src/trunnel/link_handshake.trunnel \
13         src/trunnel/pwbox.trunnel \
14         src/trunnel/channelpadding_negotiation.trunnel \
15         src/trunnel/sendme_cell.trunnel \
16         src/trunnel/flow_control_cells.trunnel \
17         src/trunnel/congestion_control.trunnel \
18         src/trunnel/socks5.trunnel \
19         src/trunnel/circpad_negotiation.trunnel \
20         src/trunnel/conflux.trunnel
22 TRUNNELSOURCES = \
23         src/ext/trunnel/trunnel.c \
24         src/trunnel/ed25519_cert.c \
25         src/trunnel/extension.c \
26         src/trunnel/link_handshake.c \
27         src/trunnel/pwbox.c                     \
28         src/trunnel/hs/cell_establish_intro.c   \
29         src/trunnel/hs/cell_introduce1.c \
30         src/trunnel/hs/cell_rendezvous.c \
31         src/trunnel/channelpadding_negotiation.c \
32         src/trunnel/sendme_cell.c                    \
33         src/trunnel/flow_control_cells.c                    \
34         src/trunnel/congestion_control.c       \
35         src/trunnel/socks5.c \
36         src/trunnel/netinfo.c \
37         src/trunnel/circpad_negotiation.c \
38         src/trunnel/conflux.c
40 TRUNNELHEADERS = \
41         src/ext/trunnel/trunnel.h               \
42         src/ext/trunnel/trunnel-impl.h          \
43         src/trunnel/trunnel-local.h             \
44         src/trunnel/ed25519_cert.h              \
45         src/trunnel/extension.h \
46         src/trunnel/link_handshake.h            \
47         src/trunnel/pwbox.h                     \
48         src/trunnel/hs/cell_establish_intro.h   \
49         src/trunnel/hs/cell_introduce1.h \
50         src/trunnel/hs/cell_rendezvous.h \
51         src/trunnel/channelpadding_negotiation.h \
52         src/trunnel/sendme_cell.h                    \
53         src/trunnel/flow_control_cells.h                    \
54         src/trunnel/congestion_control.h    \
55         src/trunnel/socks5.h                    \
56         src/trunnel/netinfo.h \
57         src/trunnel/circpad_negotiation.h \
58         src/trunnel/conflux.h
60 src_trunnel_libor_trunnel_a_SOURCES = $(TRUNNELSOURCES)
61 src_trunnel_libor_trunnel_a_CPPFLAGS = \
62         -DTRUNNEL_LOCAL_H $(AM_CPPFLAGS) -I$(top_srcdir)/src/trunnel
64 if UNITTESTS_ENABLED
65 src_trunnel_libor_trunnel_testing_a_SOURCES = $(TRUNNELSOURCES)
66 else
67 src_trunnel_libor_trunnel_testing_a_SOURCES =
68 endif
70 src_trunnel_libor_trunnel_testing_a_CPPFLAGS = -DTRUNNEL_LOCAL_H $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
71 src_trunnel_libor_trunnel_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
73 noinst_HEADERS+= $(TRUNNELHEADERS)
75 EXTRA_DIST += \
76         src/trunnel/README