/tags/rel-1-3-26/SWIG/Examples/python/libffi/Makefile
# · Makefile · 19 lines · 15 code · 4 blank · 0 comment · 0 complexity · 227b61c951f746632ee543efc50968ef 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)' LIBS='-L/usr/local/lib -lffi' 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 $(TARGET).py
- check: all