~mterry/ubuntu/natty/gnome-shell/wip

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-10-12 22:44:00 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091012224400-k91p42yvou07i525
Tags: 2.28.0-0ubuntu1
* New upstream version
* debian/control:
  - updated build requirement
* debian/patches/80_git_change_fix_alt_tab_ressource_usage.patch:
  - git change to fix ressources not being freed on alt-tab

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SUBDIRS = data js src po
 
1
SUBDIRS = data js src tests po
2
2
 
3
3
EXTRA_DIST =            \
4
4
        .project        \
5
 
        .settings
 
5
        .settings       \
 
6
        autogen.sh
 
7
 
 
8
# These are files checked into Git that we don't want to distribute
 
9
DIST_EXCLUDE =                                  \
 
10
        .gitignore                              \
 
11
        gnome-shell.doap                        \
 
12
        MAINTAINERS                             \
 
13
        tools/build/*
6
14
 
7
15
distcheck-hook:
8
 
        @echo "Checking disted javascript against files in git"
 
16
        @echo "Checking disted files against files in git"
9
17
        @failed=false; \
10
 
        for f in `cd $(srcdir) && git ls-files js` ; do \
 
18
        exclude=`(for p in $(DIST_EXCLUDE) ; do echo --exclude=$$p ; done)`; \
 
19
        for f in `cd $(srcdir) && git ls-files $$exclude` ; do \
11
20
                if ! test -e $(distdir)/$$f ; then \
12
21
                        echo File missing from distribution: $$f ; \
13
22
                        failed=true ; \