TOP        = ../../..
SWIG       = $(TOP)/swig
SRCS       = example.c
TARGET     = Example
INTERFACE  = example.i

all::
	$(MAKE) -f $(TOP)/Makefile.template SRCS='$(SRCS)' SWIG='$(SWIG)' \
	TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' tcldl
clean::
	rm -f *_wrap* *.o my_tclsh *~ *.so core 

