Files
LuaCangjia_api/lib/lua/include/Makefile
JianFeeeee f2deb81e4a vendor: 引入 Lua 2.5 官方源码 + 移植评估 (lua_2.5 分支)
- 前 lua_State 时代 API, 比 3.2 更原始(无 upvalue/无独立编译)
- 评估结论: 不建议移植(多实例冲突+管道模式不可实现), 见 doc/ADAPTATION-lua25.md
- 建议历史脚本用 5.1 兼容模式运行替代
2026-08-25 10:20:25 +08:00

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)