~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2011-11-25 13:24:12 UTC
  • mfrom: (4.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20111125132412-dc4qvhyosk74cd42
Tags: 1.0.1-4
Don't assume that arch:all packages will get built (closes: #649726)

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