Makefile.am 1.3 KB

12345678910111213141516171819202122232425262728
  1. SUBDIRS = . io unittests tests io_tests
  2. # The io_tests is hack, because otherwise we can not order these directories
  3. # properly. Unittests use io and io_tests use unittest.
  4. AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
  5. AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util
  6. AM_CPPFLAGS += -I$(top_srcdir)/src/lib/exceptions -I$(top_builddir)/src/lib/exceptions
  7. AM_CPPFLAGS += $(BOOST_INCLUDES)
  8. AM_CXXFLAGS = $(B10_CXXFLAGS)
  9. lib_LTLIBRARIES = libutil.la
  10. libutil_la_SOURCES = filename.h filename.cc
  11. libutil_la_SOURCES += locks.h lru_list.h
  12. libutil_la_SOURCES += strutil.h strutil.cc
  13. libutil_la_SOURCES += buffer.h io_utilities.h
  14. libutil_la_SOURCES += time_utilities.h time_utilities.cc
  15. libutil_la_SOURCES += hash/sha1.h hash/sha1.cc
  16. libutil_la_SOURCES += encode/base16_from_binary.h
  17. libutil_la_SOURCES += encode/base32hex.h encode/base64.h
  18. libutil_la_SOURCES += encode/base32hex_from_binary.h
  19. libutil_la_SOURCES += encode/base_n.cc encode/hex.h
  20. libutil_la_SOURCES += encode/binary_from_base32hex.h
  21. libutil_la_SOURCES += encode/binary_from_base16.h
  22. libutil_la_SOURCES += random/qid_gen.h random/qid_gen.cc
  23. libutil_la_SOURCES += random/random_number_generator.h
  24. libutil_la_LIBADD = $(top_builddir)/src/lib/exceptions/libexceptions.la
  25. CLEANFILES = *.gcno *.gcda