~kroq-gar78/ubuntu/precise/gnome-control-center/fix-885947

« back to all changes in this revision

Viewing changes to libslab/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2011-05-17 10:47:27 UTC
  • mfrom: (0.1.11 experimental) (1.1.45 upstream)
  • Revision ID: james.westby@ubuntu.com-20110517104727-lqel6m8vhfw5jby1
Tags: 1:3.0.1.1-1ubuntu1
* Rebase on Debian, remaining Ubuntu changes:
* debian/control:
  - Build-Depend on hardening-wrapper, dpkg-dev and dh-autoreconf
  - Add dependency on ubuntu-system-service
  - Remove dependency on gnome-icon-theme-symbolic
  - Move dependency on apg, gnome-icon-theme-symbolic and accountsservice to
    be a Recommends: until we get them in main
* debian/rules:
  - Use autoreconf
  - Add binary-post-install rule for gnome-control-center-data
  - Run dh-autoreconf
* debian/gnome-control-center.dirs:
* debian/gnome-control-center.links:
  - Add a link to the control center shell for indicators
* debian/patches/00_disable-nm.patch:
  - Temporary patch to disable building with NetworkManager until we get
    the new one in the archive
* debian/patches/01_git_remove_gettext_calls.patch:
  - Remove calls to AM_GNU_GETTEXT, IT_PROG_INTLTOOL should be enough
* debian/patches/01_git_kill_warning.patch:
  - Kill warning
* debian/patches/50_ubuntu_systemwide_prefs.patch:
  - Ubuntu specific proxy preferences
* debian/patches/51_ubuntu_system_keyboard.patch:
  - Implement the global keyboard spec at https://wiki.ubuntu.com/DefaultKeyboardSettings

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
INCLUDES =                                      \
2
 
        -I$(top_srcdir)                         \
3
 
        $(LIBSLAB_CFLAGS)                       \
4
 
        $(WARN_CFLAGS)
5
 
 
6
 
 
7
 
HEADER_FILES=                                   \
8
 
        $(BUILT_SOURCES)                        \
9
 
        app-resizer.h                           \
10
 
        app-shell.h                             \
11
 
        application-tile.h                      \
12
 
        bookmark-agent.h                        \
13
 
        directory-tile.h                        \
14
 
        document-tile.h                         \
15
 
        double-click-detector.h                 \
16
 
        gnome-utils.h                           \
17
 
        libslab-utils.h                         \
18
 
        nameplate-tile.h                        \
19
 
        search-bar.h                            \
20
 
        search-context-picker.h                 \
21
 
        search-entry.h                          \
22
 
        shell-window.h                          \
23
 
        slab-gnome-util.h                       \
24
 
        slab-section.h                          \
25
 
        slab.h                                  \
26
 
        system-tile.h                           \
27
 
        tile.h
28
 
 
29
 
if !LIBSLAB_FOR_INTERNAL_USE
30
 
lib_LTLIBRARIES = libslab.la
31
 
else
32
 
noinst_LTLIBRARIES = libslab.la
33
 
endif
34
 
 
35
 
libslab_la_SOURCES =                            \
36
 
        $(MARSHAL_GENERATED)                    \
37
 
        app-resizer.c                           \
38
 
        app-shell.c                             \
39
 
        application-tile.c                      \
40
 
        bookmark-agent.c                        \
41
 
        directory-tile.c                        \
42
 
        document-tile.c                         \
43
 
        double-click-detector.c                 \
44
 
        gnome-utils.c                           \
45
 
        libslab-utils.c                         \
46
 
        nameplate-tile.c                        \
47
 
        search-bar.c                            \
48
 
        search-context-picker.c                 \
49
 
        search-entry-watermark.h                \
50
 
        search-entry.c                          \
51
 
        shell-window.c                          \
52
 
        slab-gnome-util.c                       \
53
 
        slab-section.c                          \
54
 
        system-tile.c                           \
55
 
        themed-icon.c                           \
56
 
        themed-icon.h                           \
57
 
        tile-action.c                           \
58
 
        tile.c
59
 
 
60
 
if !LIBSLAB_FOR_INTERNAL_USE
61
 
libslab_includedir = $(includedir)/libslab
62
 
libslab_include_HEADERS = $(HEADER_FILES)
63
 
 
64
 
libslab_la_LDFLAGS = -version-info $(LT_VERSION)
65
 
endif
66
 
 
67
 
libslab_la_LIBADD = $(LIBSLAB_LIBS)
68
 
 
69
 
search-entry-watermark.h: search-entry-watermark.svg
70
 
        echo '#define SEARCH_ENTRY_WATERMARK_SVG "\' > $@; \
71
 
        sed -e 's/"/\\"/g' -e 's/$$/\\/' -e 's/#000000/#%s/g' $< >> $@; \
72
 
        echo '"' >> $@
73
 
 
74
 
 
75
 
MARSHAL_GENERATED = nld-marshal.c nld-marshal.h
76
 
 
77
 
nld-marshal.h: nld-marshal.list
78
 
        ( @GLIB_GENMARSHAL@ --prefix=nld_marshal $(srcdir)/nld-marshal.list --header > nld-marshal.tmp \
79
 
        && mv nld-marshal.tmp nld-marshal.h ) \
80
 
        || ( rm -f nld-marshal.tmp && exit 1 )
81
 
 
82
 
nld-marshal.c: nld-marshal.h
83
 
        ( (echo '#include "nld-marshal.h"'; @GLIB_GENMARSHAL@ --prefix=nld_marshal $(srcdir)/nld-marshal.list --body) > nld-marshal.tmp \
84
 
        && mv nld-marshal.tmp nld-marshal.c ) \
85
 
        || ( rm -f nld-marshal.tmp && exit 1 )
86
 
 
87
 
 
88
 
BUILT_SOURCES =                         \
89
 
        search-entry-watermark.h        \
90
 
        $(MARSHAL_GENERATED)
91
 
 
92
 
CLEANFILES =                            \
93
 
        search-entry-watermark.h        \
94
 
        $(MARSHAL_GENERATED)
95
 
 
96
 
EXTRA_DIST=                             \
97
 
        search-entry-watermark.svg      \
98
 
        nld-marshal.list
99
 
 
100
 
-include $(top_srcdir)/git.mk