File: Makefile.am

package info (click to toggle)
libupnp 1%3A1.6.17-1.2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,672 kB
  • sloc: ansic: 30,459; sh: 10,203; xml: 1,173; makefile: 852
file content (38 lines) | stat: -rw-r--r-- 742 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# "Makefile.am" for "libupnp/threadutil"
#
# (C) Copyright 2005 Remi 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 = \
			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 \
			inc/FreeList.h \
			inc/LinkedList.h \
			inc/ThreadPool.h \
			inc/TimerThread.h