~ubuntu-branches/ubuntu/saucy/sflphone/saucy

« back to all changes in this revision

Viewing changes to sflphone-common/src/video/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2010-12-24 16:33:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101224163355-tkvvikqxbrbav6up
Tags: 0.9.11-1
* New upstream release
* Add new build dependencies on libwebkit-dev and libyaml-dev

* Bump Standards-Version up to 3.9.1
* Bump debhelper compatibility to 8
* Patch another typo in the upstream code (lintian notice)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/globals.mak
 
2
 
 
3
SUBDIRS = decoder rtp
 
4
 
 
5
AM_CXXFLAGS = $(GSTREAMER_CFLAGS)
 
6
 
 
7
noinst_LTLIBRARIES = libvideo.la
 
8
 
 
9
libvideo_la_SOURCES = \
 
10
        VideoInputSource.cpp \
 
11
        VideoInputSourceGst.cpp  \
 
12
        VideoEndpoint.cpp \
 
13
        VideoFrame.cpp  \
 
14
        FrameFormat.cpp \
 
15
        VideoDevice.cpp \
 
16
        GstVideoDevice.cpp
 
17
 
 
18
libvideo_la_LIBADD = \
 
19
        decoder/libvideodecoder.la \
 
20
        rtp/libvideortp.la
 
21
 
 
22
libvideo_la_LDFLAGS = $(GSTREAMER_LIBS) $(LIBS)
 
23
 
 
24
noinst_HEADERS = \
 
25
        VideoInputSource.h \
 
26
        VideoInputSourceGst.h \
 
27
        VideoEndpoint.h \
 
28
        FrameFormat.h \
 
29
        VideoDevice.h \
 
30
        VideoFrame.h \
 
31
        FrameFormat.h \
 
32
        VideoDevice.h \
 
33
        GstVideoDevice.h
 
34
                                        
 
35