~ubuntu-branches/ubuntu/precise/gnome-control-center/precise-updates

« back to all changes in this revision

Viewing changes to Makefile.am

Tags: upstream-3.0.1.1
ImportĀ upstreamĀ versionĀ 3.0.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = po libwindow-settings capplets font-viewer help
2
 
DIST_SUBDIRS = po libwindow-settings capplets font-viewer help libslab shell typing-break
3
 
 
4
 
if HAVE_LIBSLAB_DEPS
5
 
SUBDIRS += libslab
6
 
endif
7
 
 
8
 
if HAVE_LIBSLAB
9
 
SUBDIRS += shell
10
 
endif
11
 
 
12
 
if HAVE_TYPING_BREAK
13
 
SUBDIRS += typing-break
14
 
endif
15
 
 
16
 
schemasdir   = @GCONF_SCHEMA_FILE_DIR@
17
 
schemas_in_files = gnome-control-center.schemas.in
18
 
schemas_DATA = $(schemas_in_files:.schemas.in=.schemas)
19
 
@INTLTOOL_SCHEMAS_RULE@
20
 
 
21
 
ACLOCAL_AMFLAGS = -I m4
22
 
 
23
 
CLEANFILES = \
24
 
        $(schemas_DATA)
 
1
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
 
2
 
 
3
SUBDIRS = po libgnome-control-center shell panels help
 
4
DIST_SUBDIRS = po help shell panels libgnome-control-center
25
5
 
26
6
DISTCLEANFILES = \
27
7
        gnome-doc-utils.make
46
26
        `find "$(srcdir)" -type f -name Makefile.in -print`
47
27
 
48
28
EXTRA_DIST = \
49
 
        $(schemas_in_files) \
50
29
        MAINTAINERS \
51
30
        gnome-doc-utils.make
52
31
 
53
 
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper --disable-update-mimedb
 
32
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper --disable-update-mimedb --enable-gtk-doc
54
33
 
55
 
GITIGNOREFILES=m4
 
34
GITIGNOREFILES=m4 help/*/*.mo
56
35
 
57
36
-include $(top_srcdir)/git.mk
58
37
 
59
 
install-data-local:
60
 
if GCONF_SCHEMAS_INSTALL
61
 
        if test -z "$(DESTDIR)" ; then \
62
 
        for p in $(schemas_DATA) ; do \
63
 
        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(top_builddir)/$$p >&1 > /dev/null; \
64
 
        done \
65
 
        fi
66
 
endif
67
 
 
68
38
dist-hook:
69
39
        @if test -d "$(srcdir)/.git"; \
70
40
        then \
71
41
                echo Creating ChangeLog && \
72
42
                ( cd "$(top_srcdir)" && \
73
43
                  echo '# Generated by Makefile. Do not edit.'; echo; \
74
 
                  $(top_srcdir)/missing --run git log origin/gnome-2-30.. --stat -M -C --name-status --date=short ) > ChangeLog.tmp \
 
44
                  $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
75
45
                && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
76
46
                || ( rm -f ChangeLog.tmp ; \
77
47
                     echo Failed to generate ChangeLog >&2 ); \