TOP        = ../../..
SWIG       = $(TOP)/swig
SRCS       = example.c
TARGET     = myperl
INTERFACE  = example.i
SWIGOPT    = -static 
all::
	$(MAKE) -f $(TOP)/Makefile.template SRCS='$(SRCS)' SWIG='$(SWIG)' \
	SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' perl5_static

clean::
	rm -f *_wrap* *.o core *~ *.so *.pm myperl

