diff options
Diffstat (limited to 'Examples/tcl/pointer/Makefile')
| -rw-r--r-- | Examples/tcl/pointer/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Examples/tcl/pointer/Makefile b/Examples/tcl/pointer/Makefile new file mode 100644 index 0000000..bed049a --- /dev/null +++ b/Examples/tcl/pointer/Makefile @@ -0,0 +1,19 @@ +TOP = ../.. +SWIG = $(TOP)/../preinst-swig +SRCS = example.c +TARGET = my_tclsh +DLTARGET = example +INTERFACE = example.i + +all:: + $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \ + TARGET='$(DLTARGET)' INTERFACE='$(INTERFACE)' tcl + +static:: + $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \ + TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' tclsh + +clean:: + $(MAKE) -f $(TOP)/Makefile tcl_clean + +check: all |
