/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/GIFPlot/Tcl/mandel/Makefile
Makefile | 23 lines | 19 code | 4 blank | 0 comment | 0 complexity | c81c5a5f635c919800987e5bc56f4ab9 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1TOP = ../../..
2SWIG = $(TOP)/../swig
3SWIGOPT = -I../../Interface
4SRCS =
5TARGET = gifplot
6INTERFACE = mandel.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)' tcl
14
15static::
16 $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
17 INCLUDE='$(INCLUDE)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
18 TARGET='mywish' INTERFACE='$(INTERFACE)' wish
19
20clean::
21 rm -f *_wrap* *.o *~ *.so mywish .~* core *.gif
22
23check: all