PageRenderTime 44ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/lua/embed2/Makefile

#
Makefile | 18 lines | 12 code | 4 blank | 2 comment | 0 complexity | 3b6f4206ebc0d8b5222a7ae54f75aba6 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 = embed2
  4. SRCS = example.c
  5. INTERFACE = example.i
  6. LUA_INTERP = embed2.c
  7. # this is a little different to normal as we have our own special interpreter
  8. # which we want to static link
  9. all::
  10. $(MAKE) -f $(TOP)/Makefile $(SWIGLIB) SRCS='$(SRCS)' SWIG='$(SWIG)' \
  11. SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='example.i' LUA_INTERP='$(LUA_INTERP)' lua_static
  12. clean::
  13. $(MAKE) -f $(TOP)/Makefile lua_clean
  14. check: all