diff options
author | mannol <eniz_vukovic@hotmail.com> | 2014-01-25 01:32:33 +0100 |
---|---|---|
committer | mannol <eniz_vukovic@hotmail.com> | 2014-01-25 01:32:33 +0100 |
commit | 65d320e31daa4709bb48b7f2a52c269dde0927e9 (patch) | |
tree | 45081a96be413d850a837d6afcee19fcfbfe7aca /toxmsi/Makefile.inc | |
parent | 51d8c41390be853a13693476802a834daf8d156a (diff) |
Done with encryption and core adaptations.
Diffstat (limited to 'toxmsi/Makefile.inc')
-rw-r--r-- | toxmsi/Makefile.inc | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/toxmsi/Makefile.inc b/toxmsi/Makefile.inc deleted file mode 100644 index 7d620e70..00000000 --- a/toxmsi/Makefile.inc +++ /dev/null | |||
@@ -1,69 +0,0 @@ | |||
1 | if BUILD_AV | ||
2 | |||
3 | lib_LTLIBRARIES += libtoxmsi.la | ||
4 | |||
5 | libtoxmsi_la_include_HEADERS = \ | ||
6 | ../toxmsi/toxmsi.h \ | ||
7 | ../toxmsi/toxmedia.h | ||
8 | |||
9 | libtoxmsi_la_includedir = $(includedir)/tox | ||
10 | |||
11 | |||
12 | libtoxmsi_la_SOURCES = ../toxmsi/toxmsi.h \ | ||
13 | ../toxmsi/toxmsi.c \ | ||
14 | ../toxmsi/toxmsi_message.h \ | ||
15 | ../toxmsi/toxmsi_message.c \ | ||
16 | ../toxmsi/toxmsi_header.h \ | ||
17 | ../toxmsi/toxmsi_header.c \ | ||
18 | ../toxmsi/toxmsi_event.h \ | ||
19 | ../toxmsi/toxmsi_event.c \ | ||
20 | ../toxrtp/tests/test_helper.h \ | ||
21 | ../toxrtp/tests/test_helper.c | ||
22 | |||
23 | libtoxmsi_la_CFLAGS = -I../toxcore \ | ||
24 | -I../toxmsi \ | ||
25 | -I../toxrtp \ | ||
26 | $(NACL_CFLAGS) \ | ||
27 | $(PTHREAD_CFLAGS) | ||
28 | |||
29 | libtoxmsi_la_LDFLAGS = $(TOXMSI_LT_LDFLAGS) \ | ||
30 | $(EXTRA_LT_LDFLAGS) \ | ||
31 | $(NACL_LDFLAGS) \ | ||
32 | $(PTHREAD_LIBS) | ||
33 | |||
34 | libtoxmsi_la_LIBS = $(NACL_LIBS) | ||
35 | |||
36 | noinst_PROGRAMS += phone | ||
37 | |||
38 | phone_SOURCES = ../toxmsi/phone.c \ | ||
39 | ../toxmsi/toxmedia.c | ||
40 | |||
41 | phone_CFLAGS = -I../toxcore \ | ||
42 | -I../toxrtp \ | ||
43 | $(AVFORMAT_CFLAGS) \ | ||
44 | $(AVCODEC_CFLAGS) \ | ||
45 | $(AVUTIL_CFLAGS) \ | ||
46 | $(AVDEVICE_CFLAGS) \ | ||
47 | $(SWSCALE_CFLAGS) \ | ||
48 | $(SDL_CFLAGS) \ | ||
49 | $(OPENAL_CFLAGS) \ | ||
50 | $(NACL_CFLAGS) \ | ||
51 | $(OPUS_CFLAGS) \ | ||
52 | $(PTHREAD_CFLAGS) | ||
53 | |||
54 | |||
55 | phone_LDADD = $(PTHREAD_LIBS) \ | ||
56 | libtoxrtp.la \ | ||
57 | libtoxmsi.la \ | ||
58 | $(NACL_LDFLAGS) \ | ||
59 | $(AVFORMAT_LIBS) \ | ||
60 | $(AVCODEC_LIBS) \ | ||
61 | $(AVUTIL_LIBS) \ | ||
62 | $(AVDEVICE_LIBS) \ | ||
63 | $(SWSCALE_LIBS) \ | ||
64 | $(SDL_LIBS) \ | ||
65 | $(OPENAL_LIBS) \ | ||
66 | $(NACL_LIBS) \ | ||
67 | $(OPUS_LIBS) | ||
68 | |||
69 | endif | ||