Makefile.am: move sources to libthread.a
This commit is contained in:
parent
05de2e998c
commit
aad0ea6e23
24
Makefile.am
24
Makefile.am
@ -9,6 +9,7 @@ bin_PROGRAMS = src/mpd
|
||||
|
||||
noinst_LIBRARIES = \
|
||||
libutil.a \
|
||||
libthread.a \
|
||||
libsystem.a \
|
||||
libevent.a \
|
||||
libpcm.a \
|
||||
@ -44,6 +45,7 @@ src_mpd_LDADD = \
|
||||
$(MIXER_LIBS) \
|
||||
libconf.a \
|
||||
libevent.a \
|
||||
libthread.a \
|
||||
libsystem.a \
|
||||
libutil.a \
|
||||
libfs.a \
|
||||
@ -69,15 +71,6 @@ src_mpd_SOURCES = \
|
||||
$(OUTPUT_API_SRC) \
|
||||
$(MIXER_API_SRC) \
|
||||
src/Compiler.h \
|
||||
src/thread/Id.hxx \
|
||||
src/thread/Mutex.hxx \
|
||||
src/thread/PosixMutex.hxx \
|
||||
src/thread/CriticalSection.hxx \
|
||||
src/thread/GLibMutex.hxx \
|
||||
src/thread/Cond.hxx \
|
||||
src/thread/PosixCond.hxx \
|
||||
src/thread/WindowsCond.hxx \
|
||||
src/thread/GLibCond.hxx \
|
||||
src/notify.cxx src/notify.hxx \
|
||||
src/AudioConfig.cxx src/AudioConfig.hxx \
|
||||
src/CheckAudioFormat.cxx src/CheckAudioFormat.hxx \
|
||||
@ -270,6 +263,19 @@ libutil_a_SOURCES = \
|
||||
src/util/ByteReverse.cxx src/util/ByteReverse.hxx \
|
||||
src/util/bit_reverse.c src/util/bit_reverse.h
|
||||
|
||||
# Multi-threading library
|
||||
|
||||
libthread_a_SOURCES = \
|
||||
src/thread/Mutex.hxx \
|
||||
src/thread/PosixMutex.hxx \
|
||||
src/thread/CriticalSection.hxx \
|
||||
src/thread/GLibMutex.hxx \
|
||||
src/thread/Cond.hxx \
|
||||
src/thread/PosixCond.hxx \
|
||||
src/thread/WindowsCond.hxx \
|
||||
src/thread/GLibCond.hxx \
|
||||
src/thread/Id.hxx
|
||||
|
||||
# System library
|
||||
|
||||
libsystem_a_SOURCES = \
|
||||
|
Loading…
Reference in New Issue
Block a user