include.am 494 B

1234567891011121314151617181920
  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_libtor_math_testing_a_SOURCES = \
  9. $(src_lib_libtor_math_a_SOURCES)
  10. src_lib_libtor_math_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
  11. src_lib_libtor_math_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
  12. noinst_HEADERS += \
  13. src/lib/math/fp.h \
  14. src/lib/math/laplace.h