summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/Makefile.am
blob: 3c8e3ab7964a1f50449334b54e09e31f3156961d (plain)
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
39
40
41
42
43
44
45
46
47
## Does not compile with final
KDE_OPTIONS = nofinal

libcricketp2pbase_la_SOURCES = stun.cpp \
			       port.cpp \
			       udpport.cpp \
			       tcpport.cpp \
			       helpers.cpp \
			       sessionmanager.cpp \
			       session.cpp \
			       p2psocket.cpp \
			       relayport.cpp \
			       stunrequest.cpp \
			       stunport.cpp \
			       socketmanager.cpp 

noinst_HEADERS =               candidate.h \
                               portallocator.h \
			       relayport.h \
		     	       session.h \
		       	       sessionmessage.h \
			       stunport.h \
			       tcpport.h \
                               helpers.h \
			       port.h \
		       	       sessionid.h \
			       socketmanager.h \
			       stunrequest.h \
			       udpport.h \
                               p2psocket.h \
			       sessiondescription.h \
			       sessionmanager.h \
			       stun.h  \
			       relayserver.h \
			       stunserver.h

AM_CPPFLAGS = -DPOSIX  $(all_includes) -I$(srcdir)/../../..

bin_PROGRAMS = relayserver stunserver
relayserver_SOURCES = relayserver.cpp relayserver_main.cpp
relayserver_LDADD = ../../base/libcricketbase.la libcricketp2pbase.la -lpthread
stunserver_SOURCES = stunserver.cpp stunserver_main.cpp
stunserver_LDADD = ../../base/libcricketbase.la libcricketp2pbase.la -lpthread

noinst_LTLIBRARIES = libcricketp2pbase.la

DEFAULT_INCLUDES = -I$(srcdir)/../../..