From fd2532dd93eb3c3a611dc9dfd2e241127da0ed4c Mon Sep 17 00:00:00 2001 From: Markus Kauppila Date: Sat, 6 Aug 2011 20:32:59 +0300 Subject: [PATCH] Added Makefile.am's to hg. --- test/test-automation/src/libtest/Makefile.am | 22 ++++++++++++++++++++ test/test-automation/src/runner/Makefile.am | 7 +++++++ 2 files changed, 29 insertions(+) create mode 100644 test/test-automation/src/libtest/Makefile.am create mode 100644 test/test-automation/src/runner/Makefile.am diff --git a/test/test-automation/src/libtest/Makefile.am b/test/test-automation/src/libtest/Makefile.am new file mode 100644 index 000000000..47b052cfd --- /dev/null +++ b/test/test-automation/src/libtest/Makefile.am @@ -0,0 +1,22 @@ +lib_LTLIBRARIES = libtest.la +libtest_la_SOURCES = SDL_test.c \ + logger_helpers.c \ + plain_logger.c \ + xml_logger.c xml.c \ + common/common.c \ + common/img_blit.c \ + common/img_blitblend.c \ + common/img_face.c \ + common/img_primitives.c \ + common/img_primitivesblend.c \ + fuzzer/utl_crc32.c \ + fuzzer/utl_md5.c \ + fuzzer/utl_random.c \ + fuzzer/fuzzer.c \ + ../runner/logger.h +INCLUDE = -I../../include +libtest_la_CLAGS = -fPIC -g +libtest_la_LDFLAGS = `sdl-config --libs` + +libtest: libtest.la + echo "Test library compiled." diff --git a/test/test-automation/src/runner/Makefile.am b/test/test-automation/src/runner/Makefile.am new file mode 100644 index 000000000..4e8cfef86 --- /dev/null +++ b/test/test-automation/src/runner/Makefile.am @@ -0,0 +1,7 @@ +INCLUDE = -I../libtest -I../../include + +bin_PROGRAMS = runner +runner_SOURCES = runner.c support.c +runner_LDADD = ../libtest/libtest.la +runner_CFLAGS = -W -Wall -Wextra -g `sdl-config --cflags` -DSDL_NO_COMPAT +runner_LDFLAGS = `sdl-config --libs`