Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Added Makefile.am's to hg.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkauppila committed Aug 6, 2011
1 parent 35b0744 commit 5369c4b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
22 changes: 22 additions & 0 deletions 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."
7 changes: 7 additions & 0 deletions 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`

0 comments on commit 5369c4b

Please sign in to comment.