mirror of
https://gitcode.com/JianFeeeee/LuaCangjia_api.git
synced 2026-09-20 08:58:13 +00:00
- 前 lua_State 时代 API, 比 3.2 更原始(无 upvalue/无独立编译) - 评估结论: 不建议移植(多实例冲突+管道模式不可实现), 见 doc/ADAPTATION-lua25.md - 建议历史脚本用 5.1 兼容模式运行替代
18 lines
174 B
Makefile
18 lines
174 B
Makefile
# makefile for lua distribution (includes)
|
|
|
|
LUA= ..
|
|
|
|
include $(LUA)/config
|
|
|
|
SRCS= lua.h lualib.h luadebug.h
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
co:
|
|
co -f -M $(SRCS)
|
|
|
|
klean: clean
|
|
rm -f $(SRCS)
|