PageRenderTime 25ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/lua/embed3/Makefile

#
Makefile | 20 lines | 13 code | 4 blank | 3 comment | 0 complexity | a08815ab72e3e723240785d3f6529fc4 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. TARGET = embed3
  4. SRCS = example.cpp
  5. INTERFACE = example.i
  6. LUA_INTERP = embed3.cpp
  7. # this is a little different to normal as we have our own special interpreter
  8. # which we want to static link
  9. # we also need the external runtime, so we can get access to certain internals of SWIG
  10. all::
  11. $(SWIG) -c++ -lua $(SWIGOPT) -external-runtime swigluarun.h
  12. $(MAKE) -f $(TOP)/Makefile $(SWIGLIB) SRCS='$(SRCS)' SWIG='$(SWIG)' \
  13. SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='example.i' LUA_INTERP='$(LUA_INTERP)' lua_static_cpp
  14. clean::
  15. $(MAKE) -f $(TOP)/Makefile lua_clean
  16. check: all