~charlesk/gnome-control-center/make-new-panel

« back to all changes in this revision

Viewing changes to panels/user-accounts/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
SUBDIRS = data
 
2
 
 
3
# This is used in PANEL_CFLAGS
 
4
cappletname = user-accounts
 
5
NULL =
 
6
 
 
7
ccpanelsdir = $(PANELS_DIR)
 
8
ccpanels_LTLIBRARIES = libuser-accounts.la
 
9
 
 
10
AM_CPPFLAGS =                                           \
 
11
        -DDATADIR=\""$(datadir)"\"                      \
 
12
        -DUIDIR=\""$(pkgdatadir)/ui/user-accounts"\"    \
 
13
        -DLIBLOCALEDIR=\""$(prefix)/lib/locale"\"       \
 
14
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
 
15
        -DUM_PIXMAP_DIR=\""$(pkgdatadir)/pixmaps"\"     \
 
16
        -I$(srcdir)/../common/                          \
 
17
        $(PANEL_CFLAGS)                                 \
 
18
        $(USER_ACCOUNTS_PANEL_CFLAGS)                   \
 
19
        $(DISABLE_DEPRECATED)
 
20
 
 
21
if BUILD_CHEESE
 
22
AM_CPPFLAGS += $(CHEESE_CFLAGS)
 
23
endif
 
24
 
 
25
MARSHALFILES = marshal.c marshal.h
 
26
BUILT_SOURCES = $(MARSHALFILES)
 
27
 
 
28
marshal.h: fprintd-marshal.list
 
29
        @GLIB_GENMARSHAL@ --prefix=fprintd_marshal $< --header > $@
 
30
marshal.c: fprintd-marshal.list
 
31
        @GLIB_GENMARSHAL@ --prefix=fprintd_marshal $< --body --header > $@
 
32
 
 
33
libuser_accounts_la_SOURCES =           \
 
34
        um-account-type.h               \
 
35
        um-account-type.c               \
 
36
        um-user.h                       \
 
37
        um-user.c                       \
 
38
        um-user-manager.h               \
 
39
        um-user-manager.c               \
 
40
        um-account-dialog.h             \
 
41
        um-account-dialog.c             \
 
42
        um-language-dialog.h            \
 
43
        um-language-dialog.c            \
 
44
        um-password-dialog.h            \
 
45
        um-password-dialog.c            \
 
46
        um-photo-dialog.h               \
 
47
        um-photo-dialog.c               \
 
48
        um-crop-area.h                  \
 
49
        um-crop-area.c                  \
 
50
        um-fingerprint-dialog.h         \
 
51
        um-fingerprint-dialog.c         \
 
52
        um-utils.h                      \
 
53
        um-utils.c                      \
 
54
        fingerprint-strings.h           \
 
55
        um-strength-bar.h               \
 
56
        um-strength-bar.c               \
 
57
        run-passwd.h                    \
 
58
        run-passwd.c                    \
 
59
        $(MARSHALFILES)                 \
 
60
        um-editable-button.h            \
 
61
        um-editable-button.c            \
 
62
        um-editable-entry.h             \
 
63
        um-editable-entry.c             \
 
64
        um-editable-combo.h             \
 
65
        um-editable-combo.c             \
 
66
        um-user-panel.h                 \
 
67
        um-user-panel.c                 \
 
68
        um-user-module.c
 
69
 
 
70
libuser_accounts_la_LIBADD =            \
 
71
        $(PANEL_LIBS)                   \
 
72
        $(USER_ACCOUNTS_PANEL_LIBS)     \
 
73
        $(top_builddir)/panels/common/liblanguage.la \
 
74
        -lcrypt                         \
 
75
        -lm
 
76
 
 
77
if BUILD_CHEESE
 
78
libuser_accounts_la_LIBADD += $(CHEESE_LIBS)
 
79
endif
 
80
 
 
81
libuser_accounts_la_LDFLAGS = $(PANEL_LDFLAGS)
 
82
 
 
83
EXTRA_DIST = \
 
84
        fprintd-marshal.list
 
85
 
 
86
CLEANFILES =                            \
 
87
        $(BUILT_SOURCES)                \
 
88
        $(NULL)
 
89
 
 
90
MAINTAINERCLEANFILES =                  \
 
91
        *~                              \
 
92
        Makefile.in
 
93
 
 
94
-include $(top_srcdir)/git.mk