aboutsummaryrefslogtreecommitdiff
path: root/src/lib/intmath/include.am
blob: 45ee3bd53bf24e11f2e37e04e712d00a53613a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
noinst_LIBRARIES += src/lib/libtor-intmath.a

if UNITTESTS_ENABLED
noinst_LIBRARIES += src/lib/libtor-intmath-testing.a
endif

src_lib_libtor_intmath_a_SOURCES =			\
	src/lib/intmath/addsub.c			\
	src/lib/intmath/bits.c				\
	src/lib/intmath/muldiv.c			\
	src/lib/intmath/weakrng.c

src_lib_libtor_intmath_testing_a_SOURCES = \
	$(src_lib_libtor_intmath_a_SOURCES)
src_lib_libtor_intmath_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
src_lib_libtor_intmath_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)

noinst_HEADERS +=					\
	src/lib/intmath/addsub.h			\
	src/lib/intmath/cmp.h				\
	src/lib/intmath/bits.h				\
	src/lib/intmath/logic.h				\
	src/lib/intmath/muldiv.h			\
	src/lib/intmath/weakrng.h