2006-06-06 10:51:22 +02:00
|
|
|
#
|
|
|
|
# "Makefile.am" for "libupnp/threadutil"
|
|
|
|
#
|
2011-02-06 14:52:47 +01:00
|
|
|
# (C) Copyright 2005 Remi Turboult <r3mi@users.sourceforge.net>
|
2006-06-06 10:51:22 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(srcdir)/inc -I$(srcdir)/src/inc
|
|
|
|
|
|
|
|
if ENABLE_DEBUG
|
|
|
|
AM_CPPFLAGS += -DDEBUG -DSTATS
|
|
|
|
else
|
|
|
|
AM_CPPFLAGS += -DNO_DEBUG -DNDEBUG
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = libthreadutil.la
|
|
|
|
|
|
|
|
libthreadutil_la_LDFLAGS = -version-info $(LT_VERSION_THREADUTIL)
|
|
|
|
|
|
|
|
libthreadutil_la_SOURCES = \
|
2011-02-06 14:52:47 +01:00
|
|
|
inc/FreeList.h \
|
|
|
|
src/FreeList.c \
|
|
|
|
inc/LinkedList.h \
|
|
|
|
src/LinkedList.c \
|
|
|
|
inc/ThreadPool.h \
|
|
|
|
src/ThreadPool.c \
|
|
|
|
inc/TimerThread.h \
|
|
|
|
src/TimerThread.c
|
2006-06-06 10:51:22 +02:00
|
|
|
|
|
|
|
upnpincludedir = $(includedir)/upnp
|
|
|
|
upnpinclude_HEADERS = \
|
2007-12-17 12:05:22 +01:00
|
|
|
inc/ithread.h
|
2006-06-06 10:51:22 +02:00
|
|
|
|