/trunk/Examples/tcl/funcptr/Makefile
Makefile | 19 lines | 15 code | 4 blank | 0 comment | 0 complexity | 8d9ebdb26246bf6d25eb7e2dc7a75c46 MD5 | raw file
1TOP = ../.. 2SWIG = $(TOP)/../preinst-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