/trunk/Examples/tcl/std_vector/Makefile
Makefile | 20 lines | 16 code | 4 blank | 0 comment | 0 complexity | d546d54099e25dc47327795ec241c2b6 MD5 | raw file
1TOP = ../.. 2SWIG = $(TOP)/../preinst-swig 3CXXSRCS = 4TARGET = my_tclsh 5DLTARGET = example 6INTERFACE = example.i 7LIBS = -lm 8 9all:: 10 $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \ 11 TARGET='$(DLTARGET)' INTERFACE='$(INTERFACE)' tcl_cpp 12 13static:: 14 $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \ 15 TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' tclsh_cpp_static 16 17clean:: 18 $(MAKE) -f $(TOP)/Makefile tcl_clean 19 20check: all