PageRenderTime 15ms CodeModel.GetById 9ms app.highlight 5ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/tcl/operator/Makefile

#
Makefile | 19 lines | 15 code | 4 blank | 0 comment | 0 complexity | 223606897963aaa996a57eab11871ce6 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
 1TOP        = ../..
 2SWIG       = $(TOP)/../swig
 3CXXSRCS    = 
 4TARGET     = example
 5INTERFACE  = example.i
 6LIBS       = -lm
 7
 8all::
 9	$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
10	TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' tcl_cpp
11
12static::
13	$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
14	TARGET='mytclsh' INTERFACE='$(INTERFACE)' tclsh_cpp_static
15
16clean::
17	rm -f *_wrap* *.o *~ *.so mytclsh *.pyc .~* core
18
19check: all