Makefile.am 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ##################################################################
  2. #
  3. # uEcho for C
  4. #
  5. # Copyright (C) Satoshi Konno 2015
  6. #
  7. # This is licensed under BSD-style license, see file COPYING.
  8. #
  9. ##################################################################
  10. TESTS = uechotest
  11. check_PROGRAMS = uechotest
  12. AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src -I../
  13. ../TestDevice.h
  14. uechotest_SOURCES = \
  15. ../MiscTest.cpp \
  16. ../PropertyTest.cpp \
  17. ../BytesTest.cpp \
  18. ../InterfaceTest.cpp \
  19. ../ObserverTest.cpp \
  20. ../LogTest.cpp \
  21. ../MessageTest.cpp \
  22. ../ObjectTest.cpp \
  23. ../ClassListTest.cpp \
  24. ../SocketTest.cpp \
  25. ../PropertyMapTest.cpp \
  26. ../ProfileTest.cpp \
  27. ../ServerTest.cpp \
  28. ../TestDevice.cpp \
  29. ../ClassTest.cpp \
  30. ../ControllerTest.cpp \
  31. ../NodeTest.cpp \
  32. ../uEchoTest.cpp \
  33. ../MutexTest.cpp \
  34. ../ObjectListTest.cpp \
  35. ../DatabaseTest.cpp \
  36. ../NodeListTest.cpp \
  37. ../DeviceTest.cpp \
  38. ../ThreadTest.cpp \
  39. ../PropertyListTest.cpp
  40. #if HAVE_LIBTOOL
  41. #uechotest_LDADD = ../../lib/unix/libuecho.la
  42. #else
  43. uechotest_LDADD = ../../lib/unix/libuecho.a
  44. #endif