genode/libports/lib/mk/lua.mk
Christian Helmuth 0200c27e33 Lua: Port of Lua runtime and simple example
The Lua runtime library is built in two variants: ANSI C and C++. The
C++ provides all Lua API function with C++ linkage and uses C++
exceptions instead of setjmp/longjmp for protected execution of Lua
chunks.

The ported version of Lua is 5.1.5.
2012-05-29 13:54:52 +02:00

8 lines
106 B
Makefile

#
# Lua library (ANSI C variant)
#
include $(REP_DIR)/lib/mk/lua.inc
SRC_C = $(LUA_CORE_C) $(LUA_LIB_C)