Commit ac6ba5c13c9ded7008bb144442c6df50f3142af3

Authored by Stéphane Raimbault
1 parent 11e09965

Alphabetical ordering of tests in Makefile.am

Showing 1 changed file with 12 additions and 12 deletions
tests/Makefile.am
1 1 EXTRA_DIST = README
2 2  
3 3 noinst_PROGRAMS = \
  4 + bandwidth-server-one \
  5 + bandwidth-server-many-up \
  6 + bandwidth-client \
4 7 random-test-server \
5 8 random-test-client \
6 9 unit-test-server \
7 10 unit-test-client \
8   - bandwidth-server-one \
9   - bandwidth-server-many-up \
10   - bandwidth-client \
11 11 version
12 12  
13 13 common_ldflags = \
14 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 25 random_test_server_SOURCES = random-test-server.c
17 26 random_test_server_LDADD = $(common_ldflags)
18 27  
... ... @@ -25,15 +34,6 @@ unit_test_server_LDADD = $(common_ldflags)
25 34 unit_test_client_SOURCES = unit-test-client.c unit-test.h
26 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 37 version_SOURCES = version.c
38 38 version_LDADD = $(common_ldflags)
39 39  
... ...