/tags/rel-1-3-15/SWIG/Examples/GIFPlot/Python/full/Makefile
Makefile | 23 lines | 19 code | 4 blank | 0 comment | 0 complexity | 5413f57f52cfdb1c30d19a34c047d1af MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1TOP = ../../..
2SWIG = $(TOP)/../swig
3SWIGOPT = -I../../Include
4SRCS =
5TARGET = gifplot
6INTERFACE = gifplot.i
7LIBS = -L../.. -lgifplot
8INCLUDE = -I../../Include
9
10all::
11 $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
12 INCLUDE='$(INCLUDE)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
13 TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' python
14
15static::
16 $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
17 INCLUDE='$(INCLUDE)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
18 TARGET='mypython' INTERFACE='$(INTERFACE)' python_static
19
20clean::
21 rm -f *_wrap* *.o *~ *.so mypython *.pyc .~* core *.gif
22
23check: all