~ubuntu-branches/debian/jessie/gamin/jessie

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2007-03-23 14:43:49 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070323144349-1inpdk22uaneks9h
Tags: 0.1.8-2
* debian/control: Improve long description. (Closes: #405347)
* debian/patches/14_nfs-fix.patch: Fix gam_server startup for Thunar.
  Thanks to Maximiliano Curia. (Closes: #403247)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
3
 
SUBDIRS = lib libgamin server tests doc
 
3
SUBDIRS = lib libgamin server @PYTHON_SUBDIR@ tests doc
4
4
 
5
5
pkgconfigdir = $(libdir)/pkgconfig
6
6
pkgconfig_DATA = gamin.pc
25
25
        @(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
26
26
 
27
27
tests: all
28
 
        (cd tests ; $(MAKE) tests)
 
28
        (cd tests ; $(MAKE) CHECKER='$(CHECKER)' tests)
 
29
        (cd python ; $(MAKE) CHECKER='$(CHECKER)' tests)
29
30
        
 
31
valgrind:
 
32
        @echo '## Running the regression tests under Valgrind'
 
33
        $(MAKE) CHECKER='valgrind' tests
 
34
 
30
35
dist-hook:
31
36
        (cd $(srcdir) ; tar -cf - --exclude CVS doc) | (cd $(distdir); tar xf -)