/tags/rel-1-3-15/SWIG/Examples/python/varargs/Makefile
# · Makefile · 18 lines · 14 code · 4 blank · 0 comment · 0 complexity · 82b83feabf7e87060c02183e8911f0d2 MD5 · raw file
- TOP = ../..
- SWIG = $(TOP)/../swig
- SRCS =
- 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::
- $(MAKE) -f $(TOP)/Makefile python_clean
- check: all