2014-09-24 16:51:39 +02:00
|
|
|
noinst_LIBRARIES += \
|
|
|
|
src/trunnel/libor-trunnel.a
|
|
|
|
|
|
|
|
if UNITTESTS_ENABLED
|
|
|
|
noinst_LIBRARIES += \
|
|
|
|
src/trunnel/libor-trunnel-testing.a
|
|
|
|
endif
|
|
|
|
|
2014-09-30 22:00:17 +02:00
|
|
|
TRUNNELINPUTS = \
|
|
|
|
src/trunnel/ed25519_cert.trunnel \
|
2014-10-08 20:43:33 +02:00
|
|
|
src/trunnel/link_handshake.trunnel \
|
2016-09-06 20:35:53 +02:00
|
|
|
src/trunnel/pwbox.trunnel \
|
2018-05-13 14:13:15 +02:00
|
|
|
src/trunnel/channelpadding_negotiation.trunnel \
|
2019-06-05 15:57:52 +02:00
|
|
|
src/trunnel/sendme_cell.trunnel \
|
2018-10-23 21:51:35 +02:00
|
|
|
src/trunnel/socks5.trunnel \
|
|
|
|
src/trunnel/circpad_negotiation.trunnel
|
2014-09-30 22:00:17 +02:00
|
|
|
|
2014-09-24 16:51:39 +02:00
|
|
|
TRUNNELSOURCES = \
|
2014-09-30 22:00:17 +02:00
|
|
|
src/ext/trunnel/trunnel.c \
|
|
|
|
src/trunnel/ed25519_cert.c \
|
2014-10-08 20:43:33 +02:00
|
|
|
src/trunnel/link_handshake.c \
|
2016-08-29 21:28:58 +02:00
|
|
|
src/trunnel/pwbox.c \
|
|
|
|
src/trunnel/hs/cell_common.c \
|
2016-08-29 21:31:38 +02:00
|
|
|
src/trunnel/hs/cell_establish_intro.c \
|
2016-09-06 20:35:53 +02:00
|
|
|
src/trunnel/hs/cell_introduce1.c \
|
2017-07-23 18:32:16 +02:00
|
|
|
src/trunnel/hs/cell_rendezvous.c \
|
2018-05-13 14:13:15 +02:00
|
|
|
src/trunnel/channelpadding_negotiation.c \
|
2019-06-05 15:57:52 +02:00
|
|
|
src/trunnel/sendme_cell.c \
|
2018-10-23 21:51:35 +02:00
|
|
|
src/trunnel/socks5.c \
|
|
|
|
src/trunnel/netinfo.c \
|
|
|
|
src/trunnel/circpad_negotiation.c
|
2014-09-24 16:51:39 +02:00
|
|
|
|
|
|
|
TRUNNELHEADERS = \
|
2014-09-30 22:00:17 +02:00
|
|
|
src/ext/trunnel/trunnel.h \
|
|
|
|
src/ext/trunnel/trunnel-impl.h \
|
2016-08-29 21:28:58 +02:00
|
|
|
src/trunnel/trunnel-local.h \
|
2014-09-30 22:00:17 +02:00
|
|
|
src/trunnel/ed25519_cert.h \
|
2016-08-29 21:28:58 +02:00
|
|
|
src/trunnel/link_handshake.h \
|
|
|
|
src/trunnel/pwbox.h \
|
|
|
|
src/trunnel/hs/cell_common.h \
|
2016-08-29 21:31:38 +02:00
|
|
|
src/trunnel/hs/cell_establish_intro.h \
|
2016-09-06 20:35:53 +02:00
|
|
|
src/trunnel/hs/cell_introduce1.h \
|
2017-07-23 18:32:16 +02:00
|
|
|
src/trunnel/hs/cell_rendezvous.h \
|
2018-05-13 14:13:15 +02:00
|
|
|
src/trunnel/channelpadding_negotiation.h \
|
2019-06-05 15:57:52 +02:00
|
|
|
src/trunnel/sendme_cell.h \
|
2018-09-21 11:39:11 +02:00
|
|
|
src/trunnel/socks5.h \
|
2018-10-23 21:51:35 +02:00
|
|
|
src/trunnel/netinfo.h \
|
|
|
|
src/trunnel/circpad_negotiation.h
|
2014-09-24 16:51:39 +02:00
|
|
|
|
|
|
|
src_trunnel_libor_trunnel_a_SOURCES = $(TRUNNELSOURCES)
|
2018-06-20 15:25:50 +02:00
|
|
|
src_trunnel_libor_trunnel_a_CPPFLAGS = \
|
|
|
|
-DTRUNNEL_LOCAL_H $(AM_CPPFLAGS) -I$(top_srcdir)/src/trunnel
|
2014-09-24 16:51:39 +02:00
|
|
|
|
2018-06-02 11:53:04 +02:00
|
|
|
if UNITTESTS_ENABLED
|
2014-09-24 16:51:39 +02:00
|
|
|
src_trunnel_libor_trunnel_testing_a_SOURCES = $(TRUNNELSOURCES)
|
2018-06-02 11:53:04 +02:00
|
|
|
else
|
|
|
|
src_trunnel_libor_trunnel_testing_a_SOURCES =
|
|
|
|
endif
|
|
|
|
|
2015-03-20 13:12:09 +01:00
|
|
|
src_trunnel_libor_trunnel_testing_a_CPPFLAGS = -DTRUNNEL_LOCAL_H $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
|
2014-09-24 16:51:39 +02:00
|
|
|
src_trunnel_libor_trunnel_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
|
|
|
|
|
|
|
|
noinst_HEADERS+= $(TRUNNELHEADERS)
|
2015-09-29 13:43:12 +02:00
|
|
|
|
|
|
|
EXTRA_DIST += \
|
|
|
|
src/trunnel/README
|