1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
EXTRA_DIST = README.md unit-tests.sh LICENSE
noinst_PROGRAMS = \
bandwidth-server-one \
bandwidth-server-many-up \
bandwidth-client \
random-test-server \
random-test-client \
unit-test-server \
unit-test-client \
version
common_ldflags = \
$(top_builddir)/src/libmodbus.la
bandwidth_server_one_SOURCES = bandwidth-server-one.c
bandwidth_server_one_LDADD = $(common_ldflags)
bandwidth_server_many_up_SOURCES = bandwidth-server-many-up.c
bandwidth_server_many_up_LDADD = $(common_ldflags)
bandwidth_client_SOURCES = bandwidth-client.c
bandwidth_client_LDADD = $(common_ldflags)
random_test_server_SOURCES = random-test-server.c
random_test_server_LDADD = $(common_ldflags)
random_test_client_SOURCES = random-test-client.c
random_test_client_LDADD = $(common_ldflags)
unit_test_server_SOURCES = unit-test-server.c unit-test.h
unit_test_server_LDADD = $(common_ldflags)
unit_test_client_SOURCES = unit-test-client.c unit-test.h
unit_test_client_LDADD = $(common_ldflags)
version_SOURCES = version.c
version_LDADD = $(common_ldflags)
AM_CPPFLAGS = \
-include $(top_builddir)/config.h \
-DSYSCONFDIR=\""$(sysconfdir)"\" \
-DLIBEXECDIR=\""$(libexecdir)"\" \
-I${top_srcdir}/src \
-I${top_builddir}/src
AM_CFLAGS = ${WARNING_CFLAGS}
CLEANFILES = *~ *.log
noinst_SCRIPTS=unit-tests.sh
TESTS=./unit-tests.sh
|