加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile.in 856 Bytes
一键复制 编辑 原始数据 按行查看 历史
李想 提交于 2023-08-12 10:59 . chromium 99.0.4844.88 origin init
SUBDIRS = scripts tests
all: $(SUBDIRS)
install: $(SUBDIRS:%=%/__install__)
uninstall: $(SUBDIRS:%=%/__uninstall__)
test: dummy
cd tests && $(MAKE) test
clean: $(SUBDIRS:%=%/__clean__)
distclean: clean $(SUBDIRS:%=%/__distclean__)
rm -f config.* Makefile
rm -rf autom4te.cache
release: $(SUBDIRS:%=%/__release__) distclean
rm -f *~
help:
@echo "Usage: make [install|uninstall|release]"
.PHONY: all install uninstall clean distclean dummy
dummy:
$(SUBDIRS): dummy
@cd $@ && $(MAKE)
$(SUBDIRS:%=%/__uninstall__): dummy
cd `dirname $@` && $(MAKE) uninstall
$(SUBDIRS:%=%/__install__): dummy
cd `dirname $@` && $(MAKE) install
$(SUBDIRS:%=%/__clean__): dummy
cd `dirname $@` && $(MAKE) clean
$(SUBDIRS:%=%/__release__): dummy
cd `dirname $@` && $(MAKE) release
$(SUBDIRS:%=%/__distclean__): dummy
cd `dirname $@` && $(MAKE) distclean
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化