mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
30 lines
818 B
Plaintext
30 lines
818 B
Plaintext
|
|
||
|
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
|
||
|
|
||
|
TRUNNELSOURCES = \
|
||
|
src/ext/trunnel/trunnel.c \
|
||
|
src/trunnel/pwbox.c
|
||
|
|
||
|
TRUNNELHEADERS = \
|
||
|
src/ext/trunnel/trunnel.h \
|
||
|
src/ext/trunnel/trunnel-impl.h \
|
||
|
src/trunnel/trunnel-local.h \
|
||
|
src/trunnel/pwbox.h
|
||
|
|
||
|
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)
|
||
|
src_trunnel_libor_trunnel_testing_a_CPPFLAGS = -DTOR_UNIT_TESTS -DTRUNNEL_LOCAL_H $(AM_CPPFLAGS)
|
||
|
src_trunnel_libor_trunnel_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
|
||
|
|
||
|
noinst_HEADERS+= $(TRUNNELHEADERS)
|