f6dd5062fe
git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/branches/branch-1.6.x@284 119443c7-1b9e-41f8-b6fc-b9c35fce742c
31 lines
692 B
Makefile
31 lines
692 B
Makefile
# $Id: Makefile.am,v 1.2 2006/02/27 21:38:56 r3mi Exp $
|
||
#
|
||
# "Makefile.am" for "libupnp/threadutil"
|
||
#
|
||
# (C) Copyright 2005 R<>mi Turboult <r3mi@users.sourceforge.net>
|
||
#
|
||
|
||
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 = \
|
||
src/FreeList.c src/LinkedList.c \
|
||
src/ThreadPool.c src/TimerThread.c
|
||
|
||
upnpincludedir = $(includedir)/upnp
|
||
upnpinclude_HEADERS = \
|
||
inc/FreeList.h inc/LinkedList.h \
|
||
inc/ThreadPool.h inc/TimerThread.h \
|
||
inc/ithread.h
|
||
|