summaryrefslogtreecommitdiff
path: root/toxcore/Makefile.inc
blob: 6c4e297fbd2cb16bc0c88e9f9fa51a6c45774320 (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
48
49
50
51
52
53
54
lib_LTLIBRARIES += libtoxcore.la

libtoxcore_la_include_HEADERS = \
                        ../toxcore/tox.h

libtoxcore_la_includedir = $(includedir)/tox

libtoxcore_la_SOURCES = ../toxcore/DHT.h \
                        ../toxcore/DHT.c \
                        ../toxcore/network.h \
                        ../toxcore/network.c \
                        ../toxcore/Lossless_UDP.h \
                        ../toxcore/Lossless_UDP.c \
                        ../toxcore/net_crypto.h \
                        ../toxcore/net_crypto.c \
                        ../toxcore/friend_requests.h \
                        ../toxcore/friend_requests.c \
                        ../toxcore/LAN_discovery.h \
                        ../toxcore/LAN_discovery.c \
                        ../toxcore/Messenger.h \
                        ../toxcore/Messenger.c \
                        ../toxcore/ping.h \
                        ../toxcore/ping.c \
                        ../toxcore/tox.h \
                        ../toxcore/tox.c \
                        ../toxcore/util.h \
                        ../toxcore/util.c \
                        ../toxcore/group_chats.h \
                        ../toxcore/group_chats.c \
                        ../toxcore/assoc.h \
                        ../toxcore/assoc.c \
						../toxcore/event.h \
						../toxcore/event.c \
                        ../toxcore/onion.h \
                        ../toxcore/onion.c \
                        ../toxcore/onion_announce.h \
                        ../toxcore/onion_announce.c \
                        ../toxcore/onion_client.h \
                        ../toxcore/onion_client.c \
                        ../toxcore/misc_tools.h

libtoxcore_la_CFLAGS =  -I$(top_srcdir) \
                        -I$(top_srcdir)/toxcore \
                        $(LIBSODIUM_CFLAGS) \
                        $(NACL_CFLAGS)

libtoxcore_la_LDFLAGS = $(TOXCORE_LT_LDFLAGS) \
                        $(EXTRA_LT_LDFLAGS) \
                        $(LIBSODIUM_LDFLAGS) \
                        $(NACL_LDFLAGS) \
                        $(WINSOCK2_LIBS)

libtoxcore_la_LIBS =    $(LIBSODIUM_LIBS) \
                        $(NAC_LIBS)