Skip to content

Commit

Permalink
Alphabetical ordering of tests in Makefile.am
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane committed Jun 3, 2011
1 parent 11e0996 commit ac6ba5c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tests/Makefile.am
@@ -1,18 +1,27 @@
EXTRA_DIST = README

noinst_PROGRAMS = \
bandwidth-server-one \
bandwidth-server-many-up \
bandwidth-client \
random-test-server \
random-test-client \
unit-test-server \
unit-test-client \
bandwidth-server-one \
bandwidth-server-many-up \
bandwidth-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)

Expand All @@ -25,15 +34,6 @@ unit_test_server_LDADD = $(common_ldflags)
unit_test_client_SOURCES = unit-test-client.c unit-test.h
unit_test_client_LDADD = $(common_ldflags)

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)

version_SOURCES = version.c
version_LDADD = $(common_ldflags)

Expand Down

0 comments on commit ac6ba5c

Please sign in to comment.