Binary is now 'lush', library is 'liblush.a'. Version banner shows "Lush 0.1.0" with original Lua copyright preserved. Adds LUSH_VERSION defines and _LUSH_VERSION global. Internal C API names, env vars, and default paths are unchanged for upstream compatibility.
14 lines
305 B
Plaintext
Executable File
14 lines
305 B
Plaintext
Executable File
make -s -j
|
|
cd testes/libs; make -s
|
|
cd .. # back to directory 'testes'
|
|
ulimit -S -s 1100
|
|
LUA_FLAGS="-W"
|
|
if [ "$(uname)" != "Linux" ]; then
|
|
LUA_FLAGS="$LUA_FLAGS -e_port=true"
|
|
fi
|
|
if { ../lush $LUA_FLAGS all.lua; } then
|
|
echo -e "\n\n final OK!!!!\n\n"
|
|
else
|
|
echo -e "\n\n >>>> BUG!!!!\n\n"
|
|
fi
|