/tags/rel-1-3-24/SWIG/Examples/python/exception/Makefile
Makefile | 20 lines | 16 code | 4 blank | 0 comment | 0 complexity | aacd303713f71b9da2d55efa1ace63bd MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1TOP = ../.. 2SWIG = $(TOP)/../swig 3CXXSRCS = 4TARGET = example 5INTERFACE = example.i 6LIBS = -lm 7 8all:: 9 $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \ 10 TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' python_cpp 11 12static:: 13 $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \ 14 TARGET='mypython' INTERFACE='$(INTERFACE)' python_cpp_static 15 16clean:: 17 $(MAKE) -f $(TOP)/Makefile python_clean 18 rm -f $(TARGET).py 19 20check: all