forked from miguelangel-nubla/videoP2Proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
46 lines (37 loc) · 682 Bytes
/
Copy pathMakefile.am
File metadata and controls
46 lines (37 loc) · 682 Bytes
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
## Process this file with automake to produce Makefile.in
## Created by Anjuta
AM_CPPFLAGS = \
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
$(JSON_C_CFLAGS) \
$(LIVE555_CFLAGS) \
-Iinclude
AM_CFLAGS =\
-Wall\
-g
bin_PROGRAMS = videop2proxy
videop2proxy_SOURCES = \
main.c \
av.c \
avframe.c \
client.c \
iotc.c \
avframe.h \
iotc.h \
av.h \
client.h \
common.h \
rtsp.cxx \
rtsp.h
videop2proxy_LDFLAGS = \
-Wl,-rpath $(libdir) \
-Wl,-rpath $(P2P_LIBS)
videop2proxy_LDADD = \
-L$(P2P_LIBS) \
$(JSON_C_LIBS) \
$(LIVE555_LIBS) \
-lIOTCAPIs \
-lAVAPIs \
-lpthread
p2pdir = $(libdir)
p2p_DATA = $(P2P_LIBS)/libIOTCAPIs.so \
$(P2P_LIBS)/libAVAPIs.so