LDADD = $(top_builddir)/src/libtanoshi-0.1.la # don't bother with automake defs DEFS = # this means make check will run these programs. noinst_PROGRAMS= \ test_bytearray \ test_protocol \ test_timer \ test_timer_millisec \ test_wakeup \ test_thread \ test_hostaddress \ test_dns \ test_socket \ test_server \ test_udpsocket \ test_udpserver TESTS = $(noinst_PROGRAMS) # we can have as many programs built here as we need. test_udpserver_SOURCES = test_udpserver.cpp test_udpsocket_SOURCES = test_udpsocket.cpp test_bytearray_SOURCES = test_bytearray.cpp test_protocol_SOURCES = test_protocol.cpp test_timer_SOURCES = test_timer.cpp test_timer_millisec_SOURCES = test_timer_millisec.cpp test_wakeup_SOURCES = test_wakeup.cpp test_thread_SOURCES = test_thread.cpp test_hostaddress_SOURCES = test_hostaddress.cpp test_dns_SOURCES = test_dns.cpp test_socket_SOURCES = test_socket.cpp test_server_SOURCES = test_server.cpp INCLUDES = -I@top_srcdir@/include @DEPS_CFLAGS@ LIBS = @DEPS_LIBS@