1 Star 2 Fork 4

logbug/lua2c

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 667 Bytes
一键复制 编辑 原始数据 按行查看 历史
David Manura 提交于 2008-08-01 03:50 . 2008-08-01
# Makefile for building in g++/gnumake.
all :
@echo nothing to do
# builds redistributable
TAG=`date +%Y-%m-%d|tr -d '-'`
dist :
DIR=lua2c-$(TAG) ; \
(rm -fr $$DIR && \
mkdir $$DIR && \
mkdir $$DIR/examples-lua && \
mkdir $$DIR/lib && \
mkdir $$DIR/lib/metalua && \
cp README LICENSE CHANGES Makefile lua2c.lua clua \
$$DIR && \
cp examples-lua/*.lua $$DIR/examples-lua/ && \
cp lib/*.lua $$DIR/lib/ && \
cp lib/metalua/*.lua $$DIR/lib/metalua/ && \
tar czvf $$DIR.tar.gz $$DIR )
clean :
rm -f *.stackdump
rm -f `find . -name '*~'`
rm -f `find . -name '*.c' -o -name '*.exe'`
rm -fr lua2c-*
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/logbug/lua2c.git
git@gitee.com:logbug/lua2c.git
logbug
lua2c
lua2c
master

搜索帮助