From fa9bf464a111549da2d6c7b51fc7eee321ebdc4c Mon Sep 17 00:00:00 2001 From: Michael Steinert Date: Tue, 15 May 2012 17:09:27 -0600 Subject: Convert to non-recursive Automake This change should speed up parallel builds considerably. It also simplifies the structure of the build system making it possible to properly track dependencies. Signed-off-by: Michael Steinert --- tests/Makefile.am | 18 ------------------ tests/test_tables.c | 2 +- 2 files changed, 1 insertion(+), 19 deletions(-) delete mode 100644 tests/Makefile.am (limited to 'tests') diff --git a/tests/Makefile.am b/tests/Makefile.am deleted file mode 100644 index ac694dc..0000000 --- a/tests/Makefile.am +++ /dev/null @@ -1,18 +0,0 @@ -check_PROGRAMS = test_tables test_parse_url -TESTS = $(check_PROGRAMS) -EXTRA_DIST = test_tables.expected - -AM_CFLAGS = -I$(top_srcdir)/librabbitmq - -if GCC -# Because we want to build under Microsoft's C compiler (for which -# there is apparently no demand for C99 support), it's a good idea -# to have gcc tell us when we stray from the old standard. -AM_CFLAGS += -ansi -pedantic -endif - -if USE_MSINTTYPES -AM_CFLAGS += -I$(top_srcdir)/msinttypes -endif - -AM_LDFLAGS = $(top_builddir)/librabbitmq/librabbitmq.la diff --git a/tests/test_tables.c b/tests/test_tables.c index 363b9f4..a01a9b0 100644 --- a/tests/test_tables.c +++ b/tests/test_tables.c @@ -438,7 +438,7 @@ static int compare_files(const char *f1, const char *f2) return res; } -const char *expected_file_name = "test_tables.expected"; +const char *expected_file_name = "tests/test_tables.expected"; int main(int argc, char **argv) { -- cgit v1.2.1