~mniess/ubuntu/trusty/totem/fix-lp1292262

« back to all changes in this revision

Viewing changes to src/plugins/tracker/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Raphaël Hertzog
  • Date: 2011-04-10 18:12:25 UTC
  • mfrom: (1.1.14 upstream)
  • mto: (1.5.7 upstream)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: james.westby@ubuntu.com-20110410181225-u3x8yhsscjoe8ony
Tags: upstream-3.0.0
Import upstream version 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
modules_flags = -export_dynamic -avoid-version -module
 
1
include $(top_srcdir)/src/plugins/Makefile.plugins
2
2
 
3
3
plugindir = $(PLUGINDIR)/tracker
4
4
plugin_LTLIBRARIES = libtracker.la
5
5
 
6
 
plugin_in_files = tracker.totem-plugin.in
7
 
 
8
 
%.totem-plugin: %.totem-plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
9
 
 
10
 
plugin_DATA = $(plugin_in_files:.totem-plugin.in=.totem-plugin)
11
 
 
12
 
common_defines = \
13
 
        -D_REENTRANT                                    \
14
 
        -DDBUS_API_SUBJECT_TO_CHANGE                    \
15
 
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
16
 
        -DGCONF_PREFIX=\""/apps/totem"\"                \
17
 
        -DDATADIR=\""$(datadir)"\"                      \
18
 
        -DLIBEXECDIR=\""$(libexecdir)"\"                \
19
 
        -DBINDIR=\""$(bindir)"\"                        \
20
 
        -DTOTEM_PLUGIN_DIR=\""$(libdir)/totem/plugins"\"\
21
 
        -DG_LOG_DOMAIN=\""Totem"\"                      \
22
 
        $(DISABLE_DEPRECATED)
 
6
plugin_in_files = tracker.plugin.in
23
7
 
24
8
libtracker_la_SOURCES = totem-tracker.c totem-tracker-widget.h totem-tracker-widget.c
25
 
libtracker_la_LDFLAGS = $(modules_flags)
26
 
libtracker_la_LIBADD = $(TRACKER_LIBS)
27
 
libtracker_la_CPPFLAGS = $(common_defines)
28
 
 
 
9
libtracker_la_LDFLAGS = $(plugin_ldflags)
 
10
libtracker_la_LIBADD = \
 
11
        $(plugin_libadd)        \
 
12
        $(TRACKER_LIBS) \
 
13
        $(DBUS_LIBS)
29
14
libtracker_la_CFLAGS = \
30
 
        $(DEPENDENCY_CFLAGS)    \
 
15
        $(plugin_cflags)        \
31
16
        $(TRACKER_CFLAGS)       \
32
 
        $(WARN_CFLAGS)          \
33
 
        $(DBUS_CFLAGS)          \
34
 
        $(AM_CFLAGS)            \
35
 
        -I$(top_srcdir)/        \
36
 
        -I$(top_srcdir)/src     \
37
 
        -I$(srcdir)/            \
38
 
        -I$(top_srcdir)/src/plugins
39
 
 
40
 
EXTRA_DIST = $(plugin_in_files)
41
 
 
42
 
CLEANFILES = $(noinst_DATA) $(BUILT_SOURCES)
43
 
DISTCLEANFILES = $(plugin_DATA)
44
 
 
 
17
        $(DBUS_CFLAGS)
 
18
 
 
19
-include $(top_srcdir)/git.mk