summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-09-09 23:56:58 +0000
committerLennart Poettering <lennart@poettering.net>2006-09-09 23:56:58 +0000
commit9358d28c21c5ea9bf8c288bd10d61eae4e3cc278 (patch)
treed6d8d5eafceefc6a32dae61c02a3297a5ad88d4e /src
parent0e96d8b7bc8be2621867fbd38a455ca1a3724abc (diff)
update Makefile
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1390 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am18
1 files changed, 13 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 69c6ac34..aad6e26d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -200,7 +200,8 @@ noinst_PROGRAMS = \
ipacl-test \
hook-list-test \
memblock-test \
- thread-test
+ thread-test \
+ flist-test
if HAVE_SIGXCPU
noinst_PROGRAMS += \
@@ -250,11 +251,16 @@ memblock_test_CFLAGS = $(AM_CFLAGS)
memblock_test_LDADD = $(AM_LDADD) libpulsecore.la
memblock_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
-thread_test_SOURCES = tests/thread-test.c
+thread_test_SOURCES = tests/thread-test.c pulse/xmalloc.c pulsecore/flist.c pulsecore/thread-posix.c pulsecore/mutex-posix.c pulsecore/log.c pulsecore/core-util.c pulse/util.c pulse/utf8.c pulsecore/core-error.c pulsecore/once-posix.c
thread_test_CFLAGS = $(AM_CFLAGS)
-thread_test_LDADD = $(AM_LDADD) libpulsecore.la
+thread_test_LDADD = $(AM_LDADD)
thread_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
+flist_test_SOURCES = tests/flist-test.c pulse/xmalloc.c pulsecore/flist.c pulsecore/thread-posix.c pulsecore/mutex-posix.c pulsecore/log.c pulsecore/core-util.c pulse/util.c pulse/utf8.c pulsecore/core-error.c pulsecore/once-posix.c
+flist_test_CFLAGS = $(AM_CFLAGS)
+flist_test_LDADD = $(AM_LDADD)
+flist_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
+
mcalign_test_SOURCES = tests/mcalign-test.c
mcalign_test_CFLAGS = $(AM_CFLAGS)
mcalign_test_LDADD = $(AM_LDADD) $(WINSOCK_LIBS) libpulsecore.la
@@ -625,10 +631,12 @@ libpulse_la_SOURCES += \
else
libpulsecore_la_SOURCES += \
pulsecore/mutex-posix.c \
- pulsecore/thread-posix.c
+ pulsecore/thread-posix.c \
+ pulsecore/once-posix.c
libpulse_la_SOURCES += \
pulsecore/mutex-posix.c \
- pulsecore/thread-posix.c
+ pulsecore/thread-posix.c \
+ pulecore/once-posix.c
endif
libpulsecore_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBOIL_CFLAGS)