10 Star 41 Fork 21

难易 / zlog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
makefile 421 Bytes
一键复制 编辑 原始数据 按行查看 历史
mofaph 提交于 2013-09-11 00:00 . makefile: add TAGS target
# Top level makefile, the real shit is at src/makefile
TARGETS=noopt 32bit
all:
cd src && $(MAKE) $@
install:
cd src && $(MAKE) $@
$(TARGETS):
cd src && $(MAKE) $@
doc:
cd doc && $(MAKE)
test:
cd test && $(MAKE)
TAGS:
find . -type f -name "*.[ch]" | xargs etags -
clean:
cd src && $(MAKE) $@
cd test && $(MAKE) $@
cd doc && $(MAKE) $@
rm -f TAGS
distclean: clean
dummy:
.PHONY: doc install test TAGS
C
1
https://gitee.com/hardysimpson/zlog.git
git@gitee.com:hardysimpson/zlog.git
hardysimpson
zlog
zlog
master

搜索帮助