~ubuntu-branches/ubuntu/oneiric/swig1.3/oneiric

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-11-10 16:29:56 UTC
  • mfrom: (1.2.8 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20081110162956-xue6itkuqhbza87s
Tags: 1.3.36-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Drop pike and libchicken-dev from the build-depends 
    (both are universe)
  - Use python2.5 instead of python2.4.
  - use php5
  - Clean Runtime/ as well.
  - debian/Rules (clean): Remove Lib/ocaml/swigp4.ml.
  - drop "--without-mzscheme", we don't have it in our build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#######################################################################
2
 
# $Id: Makefile.in 10290 2008-03-01 23:35:44Z xavier98 $
 
2
# $Id: Makefile.in 10482 2008-05-20 21:27:22Z wsfulton $
3
3
#######################################################################
4
4
 
5
5
prefix      = @prefix@
248
248
        fi;                                                             \
249
249
        test $$passed = true
250
250
 
 
251
# Partial test-suite check - it only invokes SWIG, ie no compilation and no runtime testing
 
252
partialcheck-test-suite:
 
253
        @$(MAKE) -k -s check-test-suite ACTION=partialcheck
 
254
 
 
255
partialcheck-%-test-suite:
 
256
        @$(MAKE) -k -s check-$*-test-suite ACTION=partialcheck
 
257
 
251
258
check: check-aliveness check-examples check-gifplot check-test-suite
252
259
 
253
260
# Run known-to-be-broken as well as not broken testcases in the test-suite
523
530
 
524
531
$(srcdir)/configure: $(srcdir)/configure.in
525
532
        @echo "Build system is out of date.  If the following commands fail, please reconfigure by hand (rerun: ./autogen.sh && ./configure)"
526
 
        $(srcdir)/autogen.sh
 
533
        cd $(srcdir) && ./autogen.sh
527
534
        $(SHELL) ./config.status --recheck
528
535
 
529
536
# Makefile ends here