PageRenderTime 42ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1.3.35/Examples/python/import_template/Makefile

#
Makefile | 21 lines | 17 code | 4 blank | 0 comment | 0 complexity | 55a579fa1d78265401d55782be1cd83f 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. SWIGOPT =
  4. LIBS =
  5. all::
  6. $(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
  7. LIBS='$(LIBS)' TARGET='base' INTERFACE='base.i' python_cpp
  8. $(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
  9. LIBS='$(LIBS)' TARGET='foo' INTERFACE='foo.i' python_cpp
  10. $(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
  11. LIBS='$(LIBS)' TARGET='bar' INTERFACE='bar.i' python_cpp
  12. $(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
  13. LIBS='$(LIBS)' TARGET='spam' INTERFACE='spam.i' python_cpp
  14. clean::
  15. $(MAKE) -f $(TOP)/Makefile python_clean
  16. @rm -f foo.py bar.py spam.py base.py
  17. check: all