945772d30c
subdirectory Out-of-tree builds seem to be currently broken, because ixml and threadutil files need an include path to include UpnpGlobal.h, and configure tries to copy files into a directory which it does not create. The patch fixes both issues. Signed-off-by: Marcelo Roberto Jimenez <mroberto@users.sourceforge.net> (cherry picked from commit c124ae650772e80df5388d0e34c38c2ea97b63d0)
35 lines
707 B
Makefile
35 lines
707 B
Makefile
#
|
|
# "Makefile.am" for "libupnp/threadutil"
|
|
#
|
|
# (C) Copyright 2005 Remi Turboult <r3mi@users.sourceforge.net>
|
|
#
|
|
|
|
AM_CPPFLAGS = -I$(srcdir)/inc -I$(srcdir)/src/inc \
|
|
-I$(top_srcdir)/upnp/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 = \
|
|
inc/FreeList.h \
|
|
src/FreeList.c \
|
|
inc/LinkedList.h \
|
|
src/LinkedList.c \
|
|
inc/ThreadPool.h \
|
|
src/ThreadPool.c \
|
|
inc/TimerThread.h \
|
|
src/TimerThread.c
|
|
|
|
upnpincludedir = $(includedir)/upnp
|
|
upnpinclude_HEADERS = \
|
|
inc/ithread.h
|
|
|