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

« back to all changes in this revision

Viewing changes to Makefile.in

  • 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:
218
218
SET_MAKE = @SET_MAKE@
219
219
SHELL = @SHELL@
220
220
STRIP = @STRIP@
 
221
ST_CFLAGS = @ST_CFLAGS@
 
222
ST_LIBS = @ST_LIBS@
221
223
TEST_SHELL_RECORDER_CFLAGS = @TEST_SHELL_RECORDER_CFLAGS@
222
224
TEST_SHELL_RECORDER_LIBS = @TEST_SHELL_RECORDER_LIBS@
223
225
TIDY_CFLAGS = @TIDY_CFLAGS@
285
287
top_build_prefix = @top_build_prefix@
286
288
top_builddir = @top_builddir@
287
289
top_srcdir = @top_srcdir@
288
 
SUBDIRS = data js src po
 
290
SUBDIRS = data js src tests po
289
291
EXTRA_DIST = \
290
292
        .project        \
291
 
        .settings
 
293
        .settings       \
 
294
        autogen.sh
 
295
 
 
296
 
 
297
# These are files checked into Git that we don't want to distribute
 
298
DIST_EXCLUDE = \
 
299
        .gitignore                              \
 
300
        gnome-shell.doap                        \
 
301
        MAINTAINERS                             \
 
302
        tools/build/*
292
303
 
293
304
all: config.h
294
305
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
785
796
 
786
797
 
787
798
distcheck-hook:
788
 
        @echo "Checking disted javascript against files in git"
 
799
        @echo "Checking disted files against files in git"
789
800
        @failed=false; \
790
 
        for f in `cd $(srcdir) && git ls-files js` ; do \
 
801
        exclude=`(for p in $(DIST_EXCLUDE) ; do echo --exclude=$$p ; done)`; \
 
802
        for f in `cd $(srcdir) && git ls-files $$exclude` ; do \
791
803
                if ! test -e $(distdir)/$$f ; then \
792
804
                        echo File missing from distribution: $$f ; \
793
805
                        failed=true ; \