12345678910111213141516171819202122232425262728 |
- SUBDIRS = . io unittests tests io_tests
- # The io_tests is hack, because otherwise we can not order these directories
- # properly. Unittests use io and io_tests use unittest.
- AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
- AM_CPPFLAGS += -I$(top_srcdir)/src/lib/util -I$(top_builddir)/src/lib/util
- AM_CPPFLAGS += -I$(top_srcdir)/src/lib/exceptions -I$(top_builddir)/src/lib/exceptions
- AM_CPPFLAGS += $(BOOST_INCLUDES)
- AM_CXXFLAGS = $(B10_CXXFLAGS)
- lib_LTLIBRARIES = libutil.la
- libutil_la_SOURCES = filename.h filename.cc
- libutil_la_SOURCES += locks.h lru_list.h
- libutil_la_SOURCES += strutil.h strutil.cc
- libutil_la_SOURCES += buffer.h io_utilities.h
- libutil_la_SOURCES += time_utilities.h time_utilities.cc
- libutil_la_SOURCES += hash/sha1.h hash/sha1.cc
- libutil_la_SOURCES += encode/base16_from_binary.h
- libutil_la_SOURCES += encode/base32hex.h encode/base64.h
- libutil_la_SOURCES += encode/base32hex_from_binary.h
- libutil_la_SOURCES += encode/base_n.cc encode/hex.h
- libutil_la_SOURCES += encode/binary_from_base32hex.h
- libutil_la_SOURCES += encode/binary_from_base16.h
- libutil_la_SOURCES += random/qid_gen.h random/qid_gen.cc
- libutil_la_SOURCES += random/random_number_generator.h
- libutil_la_LIBADD = $(top_builddir)/src/lib/exceptions/libexceptions.la
- CLEANFILES = *.gcno *.gcda
|