/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/python/multimap/Makefile
# · Makefile · 19 lines · 15 code · 4 blank · 0 comment · 0 complexity · dae9da6a5bde64d346113d9ea43d61cf 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
- rm -f example.py
- check: all