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
|
|
|
|
|
|
|
|
AM_CPPFLAGS += -I$(srcdir)/src/ext/trunnel -I$(srcdir)/src/trunnel
|
|
|
|
|
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 \
|
2014-09-30 22:00:17 +02:00
|
|
|
src/trunnel/pwbox.trunnel
|
|
|
|
|
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 \
|
|
|
|
src/trunnel/hs/cell_establish_intro.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 \
|
|
|
|
src/trunnel/hs/cell_establish_intro.h
|
2014-09-24 16:51:39 +02:00
|
|
|
|
|
|
|
src_trunnel_libor_trunnel_a_SOURCES = $(TRUNNELSOURCES)
|
|
|
|
src_trunnel_libor_trunnel_a_CPPFLAGS = -DTRUNNEL_LOCAL_H $(AM_CPPFLAGS)
|
|
|
|
|
|
|
|
src_trunnel_libor_trunnel_testing_a_SOURCES = $(TRUNNELSOURCES)
|
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
|
|
|
|
|