diff --git a/Makefile.am b/Makefile.am index 904aeb4..b4611fc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,4 @@ +EXTRA_DIST = MIGRATION SUBDIRS = modbus tests pkgconfigdir = $(libdir)/pkgconfig diff --git a/debian/changelog b/debian/changelog index 570e59b..f53230c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +libmodbus (2.0.0-2) hardy; urgency=low + + * Add test files to examples directory in libmodbus-dev. + * Add MIGRATION file to libmodbus-dev. + * Define the compatibility level to 6. + + -- Stéphane Raimbault Sun, 18 May 2008 14:30:23 +0200 + libmodbus (2.0.0-1) hardy; urgency=low * Initial release. diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..1e8b314 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +6 diff --git a/debian/libmodbus-dev.docs b/debian/libmodbus-dev.docs new file mode 100644 index 0000000..d5ba6a1 --- /dev/null +++ b/debian/libmodbus-dev.docs @@ -0,0 +1 @@ +MIGRATION diff --git a/debian/libmodbus-dev.examples b/debian/libmodbus-dev.examples new file mode 100644 index 0000000..7884c31 --- /dev/null +++ b/debian/libmodbus-dev.examples @@ -0,0 +1,2 @@ +tests/*.[ch] +tests/README diff --git a/tests/Makefile.am b/tests/Makefile.am index 3dae213..503bcce 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,3 +1,5 @@ +EXTRA_DIST = README + noinst_PROGRAMS = \ random-test-slave \ random-test-master \ @@ -15,10 +17,10 @@ random_test_slave_LDADD = $(common_ldflags) random_test_master_SOURCES = random-test-master.c random_test_master_LDADD = $(common_ldflags) -unit_test_slave_SOURCES = unit-test-slave.c +unit_test_slave_SOURCES = unit-test-slave.c unit-test.h unit_test_slave_LDADD = $(common_ldflags) -unit_test_master_SOURCES = unit-test-master.c +unit_test_master_SOURCES = unit-test-master.c unit-test.h unit_test_master_LDADD = $(common_ldflags) bench_bandwidth_slave_SOURCES = bench-bandwidth-slave.c