tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

include.am (649B)


      1 
      2 noinst_LIBRARIES += src/lib/libtor-math.a
      3 
      4 if UNITTESTS_ENABLED
      5 noinst_LIBRARIES += src/lib/libtor-math-testing.a
      6 endif
      7 
      8 # ADD_C_FILE: INSERT SOURCES HERE.
      9 src_lib_libtor_math_a_SOURCES =	\
     10 		src/lib/math/fp.c	\
     11 		src/lib/math/laplace.c 	\
     12 		src/lib/math/prob_distr.c
     13 
     14 src_lib_libtor_math_testing_a_SOURCES = \
     15 	$(src_lib_libtor_math_a_SOURCES)
     16 src_lib_libtor_math_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
     17 src_lib_libtor_math_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
     18 
     19 # ADD_C_FILE: INSERT HEADERS HERE.
     20 noinst_HEADERS +=				\
     21 		src/lib/math/fp.h		\
     22 		src/lib/math/laplace.h		\
     23 		src/lib/math/prob_distr.h	\
     24 		src/lib/math/stats.h