PageRenderTime 34ms CodeModel.GetById 9ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1-3-15/SWIG/Examples/GIFPlot/Python/full/Makefile

#
Makefile | 23 lines | 19 code | 4 blank | 0 comment | 0 complexity | 5413f57f52cfdb1c30d19a34c047d1af MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. TOP = ../../..
  2. SWIG = $(TOP)/../swig
  3. SWIGOPT = -I../../Include
  4. SRCS =
  5. TARGET = gifplot
  6. INTERFACE = gifplot.i
  7. LIBS = -L../.. -lgifplot
  8. INCLUDE = -I../../Include
  9. all::
  10. $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
  11. INCLUDE='$(INCLUDE)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
  12. TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' python
  13. static::
  14. $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
  15. INCLUDE='$(INCLUDE)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
  16. TARGET='mypython' INTERFACE='$(INTERFACE)' python_static
  17. clean::
  18. rm -f *_wrap* *.o *~ *.so mypython *.pyc .~* core *.gif
  19. check: all