include.am 711 B

12345678910111213141516171819202122232425
  1. noinst_LIBRARIES += src/lib/libtor-intmath.a
  2. if UNITTESTS_ENABLED
  3. noinst_LIBRARIES += src/lib/libtor-intmath-testing.a
  4. endif
  5. src_lib_libtor_intmath_a_SOURCES = \
  6. src/lib/intmath/addsub.c \
  7. src/lib/intmath/bits.c \
  8. src/lib/intmath/muldiv.c \
  9. src/lib/intmath/weakrng.c
  10. src_lib_libtor_intmath_testing_a_SOURCES = \
  11. $(src_lib_libtor_intmath_a_SOURCES)
  12. src_lib_libtor_intmath_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
  13. src_lib_libtor_intmath_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
  14. noinst_HEADERS += \
  15. src/lib/intmath/addsub.h \
  16. src/lib/intmath/cmp.h \
  17. src/lib/intmath/bits.h \
  18. src/lib/intmath/logic.h \
  19. src/lib/intmath/muldiv.h \
  20. src/lib/intmath/weakrng.h