~ubuntu-branches/ubuntu/precise/gvfs/precise-proposed

« back to all changes in this revision

Viewing changes to .pc/02_deprecated.patch/monitor/proxy/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2011-11-17 07:43:33 UTC
  • mfrom: (1.1.77) (33.1.18 experimental)
  • Revision ID: package-import@ubuntu.com-20111117074333-ua4kq03btq4shvb1
Tags: 1.10.1-1ubuntu1
* Merge with Debian experimental. Remaining Ubuntu changes:
  - debian/control.in: Drop libbluray-dev build dependency (in universe).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
NULL =
 
3
 
 
4
remote_volume_monitorsdir = $(datadir)/gvfs/remote-volume-monitors
 
5
 
 
6
module_flags = -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex '^g_io_module_(load|unload|query)'
 
7
 
 
8
giomodules_LTLIBRARIES = libgioremote-volume-monitor.la
 
9
 
 
10
libgioremote_volume_monitor_la_SOURCES =                                \
 
11
        remote-volume-monitor-module.c                                  \
 
12
        gproxydrive.c                   gproxydrive.h                   \
 
13
        gproxyvolume.c                  gproxyvolume.h                  \
 
14
        gproxymount.c                   gproxymount.h                   \
 
15
        gproxyshadowmount.c             gproxyshadowmount.h             \
 
16
        gproxyvolumemonitor.c           gproxyvolumemonitor.h           \
 
17
        gproxymountoperation.c          gproxymountoperation.h          \
 
18
        $(NULL)
 
19
 
 
20
libgioremote_volume_monitor_la_CFLAGS =                                 \
 
21
        -DG_LOG_DOMAIN=\"GVFS-RemoteVolumeMonitor\"                     \
 
22
        -I$(top_srcdir)/common                                          \
 
23
        $(GLIB_CFLAGS)                                                  \
 
24
        $(DBUS_CFLAGS)                                                  \
 
25
        -DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\"                          \
 
26
        -DREMOTE_VOLUME_MONITORS_DIR=\"$(remote_volume_monitorsdir)\"   \
 
27
        -DGVFS_LOCALEDIR=\""$(localedir)"\"                             \
 
28
        -DG_DISABLE_DEPRECATED                                          \
 
29
        $(NULL)
 
30
 
 
31
libgioremote_volume_monitor_la_LDFLAGS =                                \
 
32
        $(module_flags)                                                 \
 
33
        $(NULL)
 
34
 
 
35
libgioremote_volume_monitor_la_LIBADD  =                                \
 
36
        $(GLIB_LIBS)                                                    \
 
37
        $(DBUS_LIBS)                                                    \
 
38
        $(top_builddir)/common/libgvfscommon.la                         \
 
39
        $(NULL)
 
40
 
 
41
############################################################################
 
42
 
 
43
noinst_LTLIBRARIES = libgvfsproxyvolumemonitordaemon-noin.la
 
44
 
 
45
libgvfsproxyvolumemonitordaemon_noin_la_SOURCES =               \
 
46
        gvfsproxyvolumemonitordaemon.c                          \
 
47
        gvfsproxyvolumemonitordaemon.h
 
48
 
 
49
libgvfsproxyvolumemonitordaemon_noin_la_CFLAGS =                \
 
50
        -I$(top_srcdir)/common                                  \
 
51
        $(GLIB_CFLAGS)                                          \
 
52
        $(DBUS_CFLAGS)                                          \
 
53
        $(GDU_CFLAGS)                                           \
 
54
        -DG_LOG_DOMAIN=\"GVFS-RemoteVolumeMonitorDaemon\"       \
 
55
        -DGVFS_LOCALEDIR=\""$(localedir)"\"                     \
 
56
        -DG_DISABLE_DEPRECATED                                  \
 
57
        $(NULL)
 
58
 
 
59
libgvfsproxyvolumemonitordaemon_noin_la_LIBADD  =               \
 
60
        $(GLIB_LIBS)                                            \
 
61
        $(DBUS_LIBS)                                            \
 
62
        $(top_builddir)/common/libgvfscommon.la                 \
 
63
        $(NULL)
 
64
 
 
65
clean-local:
 
66
        rm -f *~ *.loT
 
67
 
 
68
install-data-local:
 
69
        mkdir -p $(DESTDIR)$(remote_volume_monitorsdir)