PageRenderTime 34ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 1ms

/tags/rel-1-3-25/SWIG/Examples/python/class/Makefile

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