~timchen119/ubuntu/trusty/gnome-bluetooth/lp1035431

« back to all changes in this revision

Viewing changes to properties/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2011-02-27 15:45:22 UTC
  • mfrom: (1.3.2 upstream)
  • mto: (2.2.3 experimental) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 53.
  • Revision ID: james.westby@ubuntu.com-20110227154522-dnnoqasv5v3mv42a
Tags: upstream-2.91.5
ImportĀ upstreamĀ versionĀ 2.91.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
bin_PROGRAMS = bluetooth-properties
3
 
 
4
 
bluetooth_properties_SOURCES = main.c general.h general.c adapter.h adapter.c gconf-bridge.c gconf-bridge.h
5
 
 
6
 
bluetooth_properties_LDADD = $(top_builddir)/lib/libgnome-bluetooth.la $(top_builddir)/lib/libcommon.la $(PROPS_LIBS)
 
2
ccpanelsdir = $(PANELS_DIR)
 
3
ccpanels_LTLIBRARIES = libbluetooth.la
 
4
 
 
5
libbluetooth_la_SOURCES =                       \
 
6
        cc-bluetooth-panel.c                    \
 
7
        cc-bluetooth-panel.h                    \
 
8
        general.h                               \
 
9
        general.c                               \
 
10
        adapter.h                               \
 
11
        adapter.c
 
12
 
 
13
libbluetooth_la_LIBADD = $(top_builddir)/lib/libgnome-bluetooth.la $(top_builddir)/lib/libcommon.la $(PROPS_LIBS)
 
14
libbluetooth_la_LDFLAGS = -avoid-version -module
7
15
 
8
16
AM_CFLAGS = $(PROPS_CFLAGS) $(WARN_CFLAGS) $(DISABLE_DEPRECATED) -DPKGDATADIR="\"$(pkgdatadir)\""
9
17
 
10
18
INCLUDES = -I$(top_srcdir)/lib
11
19
 
12
 
man_MANS = bluetooth-properties.1
13
 
 
14
20
desktopdir = $(datadir)/applications
15
 
 
16
21
desktop_in_in_files = bluetooth-properties.desktop.in.in
17
22
desktop_in_files = bluetooth-properties.desktop.in
18
 
 
19
23
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
20
 
 
21
24
@INTLTOOL_DESKTOP_RULE@
22
25
 
23
 
ui_DATA = properties-no-adapter.ui properties-adapter-off.ui
 
26
ui_DATA = properties-no-adapter.ui properties-adapter-off.ui properties-killed-adapter.ui
24
27
uidir = $(pkgdatadir)
25
28
 
26
 
schemadir = $(GCONF_SCHEMA_FILE_DIR)
27
 
 
28
 
schema_in_files = bluetooth-manager.schemas.in
29
 
 
30
 
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
31
 
 
32
 
@INTLTOOL_SCHEMAS_RULE@
 
29
convertdir=$(datadir)/GConf/gsettings
 
30
convert_DATA=gnome-bluetooth
 
31
 
 
32
gsettingsschema_in_files = org.gnome.Bluetooth.gschema.xml.in
 
33
gsettings_SCHEMAS = $(gsettingsschema_in_files:.xml.in=.xml)
 
34
@INTLTOOL_XML_NOMERGE_RULE@
 
35
@GSETTINGS_RULES@
33
36
 
34
37
CLEANFILES = $(desktop_DATA) $(schema_DATA)
35
38
 
36
 
EXTRA_DIST = $(man_MANS) $(desktop_in_in_files) $(schema_in_files) $(ui_DATA)
 
39
EXTRA_DIST = $(man_MANS) $(desktop_in_in_files) $(schema_in_files) $(ui_DATA) $(convert_DATA) $(gsettingsschema_in_files)
37
40
 
38
41
MAINTAINERCLEANFILES = Makefile.in
39
42
 
40
 
if GCONF_SCHEMAS_INSTALL
41
 
install-data-local:
42
 
        -GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
43
 
        $(GCONFTOOL) --makefile-install-rule $(schema_DATA)
44
43
 
45
 
uninstall-local:
46
 
        -GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
47
 
        $(GCONFTOOL) --makefile-uninstall-rule $(schema_DATA)
48
 
endif