git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@742 626c5289-ae23-0410-ae9c-e8d60b6d4f22
18 lines
433 B
Makefile
18 lines
433 B
Makefile
TOP = ../..
|
|
SWIG = $(TOP)/../swig
|
|
SRCS = example.c
|
|
TARGET = example
|
|
INTERFACE = example.i
|
|
|
|
all::
|
|
$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
|
|
TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' python
|
|
|
|
static::
|
|
$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
|
|
TARGET='mypython' INTERFACE='$(INTERFACE)' python_static
|
|
|
|
clean::
|
|
rm -f *_wrap* *.o *~ *.so mypython *.pyc .~* core
|
|
|
|
check: all
|