~noskcaj/ubuntu/vivid/snappy-player/1.0

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2011-03-25 20:35:19 UTC
  • Revision ID: james.westby@ubuntu.com-20110325203519-sqbk5rf8cn3zi4x0
Tags: upstream-0.1
Import upstream version 0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
NULL =
 
2
 
 
3
public_headers = \
 
4
                utils.h \
 
5
                user_interface.h \
 
6
                gst_engine.h
 
7
 
 
8
c_sources = \
 
9
        utils.c \
 
10
        user_interface.c \
 
11
        gst_engine.c \
 
12
        snappy.c
 
13
 
 
14
CLEANFILES =
 
15
 
 
16
bin_PROGRAMS = snappy
 
17
 
 
18
snappy_SOURCES = $(c_sources)
 
19
snappy_CFLAGS = $(CLUTTER_CFLAGS) $(GSTREAMER_0_10_CFLAGS) $(CLUTTER_GST_CFLAGS) $(GIO_CFLAGS) -DSNAPPY_DATA_DIR="\"$(pkgdatadir)\""
 
20
snappy_LDADD = $(CLUTTER_LIBS) $(GSTREAMER_0_10_LIBS) $(CLUTTER_GST_LIBS) $(GIO_LIBS)
 
21
 
 
22
noinst_HEADERS = $(public_headers)