include.am (781B)
1 2 noinst_LIBRARIES += src/lib/libtor-intmath.a 3 4 if UNITTESTS_ENABLED 5 noinst_LIBRARIES += src/lib/libtor-intmath-testing.a 6 endif 7 8 # ADD_C_FILE: INSERT SOURCES HERE. 9 src_lib_libtor_intmath_a_SOURCES = \ 10 src/lib/intmath/addsub.c \ 11 src/lib/intmath/bits.c \ 12 src/lib/intmath/muldiv.c \ 13 src/lib/intmath/weakrng.c 14 15 src_lib_libtor_intmath_testing_a_SOURCES = \ 16 $(src_lib_libtor_intmath_a_SOURCES) 17 src_lib_libtor_intmath_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) 18 src_lib_libtor_intmath_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) 19 20 # ADD_C_FILE: INSERT HEADERS HERE. 21 noinst_HEADERS += \ 22 src/lib/intmath/addsub.h \ 23 src/lib/intmath/cmp.h \ 24 src/lib/intmath/bits.h \ 25 src/lib/intmath/logic.h \ 26 src/lib/intmath/muldiv.h \ 27 src/lib/intmath/weakrng.h