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

« back to all changes in this revision

Viewing changes to Examples/GIFPlot/Php4/simple/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2009-11-15 14:00:28 UTC
  • mfrom: (1.2.9 upstream) (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091115140028-me7amr2rie8zz1xn
Tags: 1.3.40-2ubuntu1
* Merge from Debian testing (LP: #356529), remaining changes:
  - Drop libchicken-dev from the build-depends (it's in universe)
  - Remove Pike from package description and from configure flags
  - drop "--without-mzscheme", we don't have it in our build-depends
  - use php-config5
  - Clean Runtime/ as well.
  - debian/rules (clean): Remove Lib/ocaml/swigp4.ml.
* debian/rules: Remove hardcoded python version.
* Remove upper limit for python from Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
TOP        = ../../..
2
 
SWIG       = $(TOP)/../swig
3
 
SWIGOPT    = -noproxy
4
 
SRCS       =
5
 
TARGET     = php_simple
6
 
INTERFACE  = simple.i
7
 
LIBS       = -L../.. -lgifplot
8
 
INCLUDES   = -I../../Include
9
 
 
10
 
all::
11
 
        $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
12
 
        INCLUDES='$(INCLUDES)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
13
 
        TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' php4
14
 
 
15
 
clean::
16
 
        $(MAKE) -f $(TOP)/Makefile php4_clean
17
 
        rm -f *.gif
18
 
        rm -f php_simple.h
19
 
 
20
 
check: all