PageRenderTime 41ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Makefile | 19 lines | 15 code | 4 blank | 0 comment | 0 complexity | 024ed1a292f80c86076076819b567b7b 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. SRCS = example.c
  4. TARGET = example
  5. INTERFACE = example.i
  6. all::
  7. $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
  8. TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' python
  9. static::
  10. $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
  11. TARGET='mypython' INTERFACE='$(INTERFACE)' python_static
  12. clean::
  13. $(MAKE) -f $(TOP)/Makefile python_clean
  14. rm -f $(TARGET).py
  15. check: all