include.am 556 B

12345678910111213141516171819202122
  1. noinst_LIBRARIES += src/lib/libtor-math.a
  2. if UNITTESTS_ENABLED
  3. noinst_LIBRARIES += src/lib/libtor-math-testing.a
  4. endif
  5. src_lib_libtor_math_a_SOURCES = \
  6. src/lib/math/fp.c \
  7. src/lib/math/laplace.c \
  8. src/lib/math/prob_distr.c
  9. src_lib_libtor_math_testing_a_SOURCES = \
  10. $(src_lib_libtor_math_a_SOURCES)
  11. src_lib_libtor_math_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
  12. src_lib_libtor_math_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
  13. noinst_HEADERS += \
  14. src/lib/math/fp.h \
  15. src/lib/math/laplace.h \
  16. src/lib/math/prob_distr.h