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