/tags/rel-1-3-24/SWIG/Examples/tcl/value/Makefile
Makefile | 19 lines | 15 code | 4 blank | 0 comment | 0 complexity | 519607a03cb5a565e586381578f75dd2 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1TOP = ../.. 2SWIG = $(TOP)/../swig 3SRCS = example.c 4TARGET = my_tclsh 5DLTARGET = example 6INTERFACE = example.i 7 8all:: 9 $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \ 10 TARGET='$(DLTARGET)' INTERFACE='$(INTERFACE)' tcl 11 12static:: 13 $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \ 14 TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' tclsh 15 16clean:: 17 $(MAKE) -f $(TOP)/Makefile tcl_clean 18 19check: all