include.am 442 B

1234567891011121314151617
  1. noinst_LIBRARIES += src/lib/libtor-fdio.a
  2. if UNITTESTS_ENABLED
  3. noinst_LIBRARIES += src/lib/libtor-fdio-testing.a
  4. endif
  5. src_lib_libtor_fdio_a_SOURCES = \
  6. src/lib/fdio/fdio.c
  7. src_lib_libtor_fdio_testing_a_SOURCES = \
  8. $(src_lib_libtor_fdio_a_SOURCES)
  9. src_lib_libtor_fdio_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
  10. src_lib_libtor_fdio_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
  11. noinst_HEADERS += \
  12. src/lib/fdio/fdio.h