Add Examples/tcl/std_vector/ which this change fixes. Patch is from "Cliff C" in SF#1809819. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9989 626c5289-ae23-0410-ae9c-e8d60b6d4f22
20 lines
477 B
Makefile
20 lines
477 B
Makefile
TOP = ../..
|
|
SWIG = $(TOP)/../preinst-swig
|
|
CXXSRCS =
|
|
TARGET = my_tclsh
|
|
DLTARGET = example
|
|
INTERFACE = example.i
|
|
LIBS = -lm
|
|
|
|
all::
|
|
$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
|
|
TARGET='$(DLTARGET)' INTERFACE='$(INTERFACE)' tcl_cpp
|
|
|
|
static::
|
|
$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
|
|
TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' tclsh_cpp_static
|
|
|
|
clean::
|
|
$(MAKE) -f $(TOP)/Makefile tcl_clean
|
|
|
|
check: all
|