TOP        = ../../..
SWIG       = $(TOP)/swig
SRCS       = ptrconst.c
TARGET     = my_tclsh
INTERFACE  = ptrconst.i

all::
	$(MAKE) -f $(TOP)/Makefile.template SRCS='$(SRCS)' SWIG='$(SWIG)' \
	TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' tclsh

clean::
	rm -f *_wrap* *.o my_tclsh *~


