File: Makefile.am

package info (click to toggle)
farstream 0.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,056 kB
  • sloc: ansic: 42,619; sh: 11,607; perl: 2,704; python: 1,500; makefile: 900; xml: 704
file content (30 lines) | stat: -rw-r--r-- 702 bytes parent folder | download | duplicates (2)
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

plugindir = $(FS_PLUGIN_PATH)

plugin_LTLIBRARIES = libnice-transmitter.la

# sources used to compile this lib
libnice_transmitter_la_SOURCES = \
	fs-nice-transmitter.c \
	fs-nice-stream-transmitter.c \
	fs-nice-agent.c

# flags used to compile this plugin
libnice_transmitter_la_CFLAGS = \
	$(FS_INTERNAL_CFLAGS) \
	$(FS_CFLAGS) \
	$(GST_PLUGINS_BASE_CFLAGS) \
	$(GST_CFLAGS) \
	$(NICE_CFLAGS)
libnice_transmitter_la_LDFLAGS = $(FS_PLUGIN_LDFLAGS)
libnice_transmitter_la_LIBADD = \
	$(top_builddir)/farstream/libfarstream-@FS_MAJORMINOR@.la \
	$(FS_LIBS) \
	$(GST_BASE_LIBS) \
	$(GST_LIBS) \
	$(NICE_LIBS)

noinst_HEADERS = \
	fs-nice-transmitter.h \
	fs-nice-stream-transmitter.h \
	fs-nice-agent.h