Commit ac6ba5c13c9ded7008bb144442c6df50f3142af3
1 parent
11e09965
Alphabetical ordering of tests in Makefile.am
Showing
1 changed file
with
12 additions
and
12 deletions
tests/Makefile.am
| 1 | EXTRA_DIST = README | 1 | EXTRA_DIST = README |
| 2 | 2 | ||
| 3 | noinst_PROGRAMS = \ | 3 | noinst_PROGRAMS = \ |
| 4 | + bandwidth-server-one \ | ||
| 5 | + bandwidth-server-many-up \ | ||
| 6 | + bandwidth-client \ | ||
| 4 | random-test-server \ | 7 | random-test-server \ |
| 5 | random-test-client \ | 8 | random-test-client \ |
| 6 | unit-test-server \ | 9 | unit-test-server \ |
| 7 | unit-test-client \ | 10 | unit-test-client \ |
| 8 | - bandwidth-server-one \ | ||
| 9 | - bandwidth-server-many-up \ | ||
| 10 | - bandwidth-client \ | ||
| 11 | version | 11 | version |
| 12 | 12 | ||
| 13 | common_ldflags = \ | 13 | common_ldflags = \ |
| 14 | $(top_builddir)/src/libmodbus.la | 14 | $(top_builddir)/src/libmodbus.la |
| 15 | 15 | ||
| 16 | +bandwidth_server_one_SOURCES = bandwidth-server-one.c | ||
| 17 | +bandwidth_server_one_LDADD = $(common_ldflags) | ||
| 18 | + | ||
| 19 | +bandwidth_server_many_up_SOURCES = bandwidth-server-many-up.c | ||
| 20 | +bandwidth_server_many_up_LDADD = $(common_ldflags) | ||
| 21 | + | ||
| 22 | +bandwidth_client_SOURCES = bandwidth-client.c | ||
| 23 | +bandwidth_client_LDADD = $(common_ldflags) | ||
| 24 | + | ||
| 16 | random_test_server_SOURCES = random-test-server.c | 25 | random_test_server_SOURCES = random-test-server.c |
| 17 | random_test_server_LDADD = $(common_ldflags) | 26 | random_test_server_LDADD = $(common_ldflags) |
| 18 | 27 | ||
| @@ -25,15 +34,6 @@ unit_test_server_LDADD = $(common_ldflags) | @@ -25,15 +34,6 @@ unit_test_server_LDADD = $(common_ldflags) | ||
| 25 | unit_test_client_SOURCES = unit-test-client.c unit-test.h | 34 | unit_test_client_SOURCES = unit-test-client.c unit-test.h |
| 26 | unit_test_client_LDADD = $(common_ldflags) | 35 | unit_test_client_LDADD = $(common_ldflags) |
| 27 | 36 | ||
| 28 | -bandwidth_server_one_SOURCES = bandwidth-server-one.c | ||
| 29 | -bandwidth_server_one_LDADD = $(common_ldflags) | ||
| 30 | - | ||
| 31 | -bandwidth_server_many_up_SOURCES = bandwidth-server-many-up.c | ||
| 32 | -bandwidth_server_many_up_LDADD = $(common_ldflags) | ||
| 33 | - | ||
| 34 | -bandwidth_client_SOURCES = bandwidth-client.c | ||
| 35 | -bandwidth_client_LDADD = $(common_ldflags) | ||
| 36 | - | ||
| 37 | version_SOURCES = version.c | 37 | version_SOURCES = version.c |
| 38 | version_LDADD = $(common_ldflags) | 38 | version_LDADD = $(common_ldflags) |
| 39 | 39 |