⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dash-b

📁 Linux 下的编译工具
💻
字号:
#                                                                    -*-perl-*-$description = "Test make -B (always remake) option.\n";$details = "\Construct a simple makefile that builds a target.Invoke make once, so it builds everything.  Invoke it again and verifythat nothing is built.  Then invoke it with -B and verify that everythingis built again.";&touch('bar.x');run_make_test('.SUFFIXES:.PHONY: allall: foofoo: bar.x	@echo cp $< $@	@echo "" > $@',              '', 'cp bar.x foo');run_make_test(undef, '', "#MAKE#: Nothing to be done for `all'.");run_make_test(undef, '-B', 'cp bar.x foo');# Put the timestamp for foo into the future; it should still be remade.utouch(1000, 'foo');run_make_test(undef, '', "#MAKE#: Nothing to be done for `all'.");run_make_test(undef, '-B', 'cp bar.x foo');# Clean uprmfiles('bar.x', 'foo');# Test -B with the re-exec feature: we don't want to re-exec forever# Savannah bug # 7566run_make_test('all: ; @:$(info MAKE_RESTARTS=$(MAKE_RESTARTS))include foo.xfoo.x: ; @touch $@',              '-B', 'MAKE_RESTARTS=#MAKEFILE#:4: foo.x: No such file or directoryMAKE_RESTARTS=1');rmfiles('foo.x');# Test -B with the re-exec feature: we DO want -B in the "normal" part of the# makefile.&touch('blah.x');run_make_test('all: blah.x ; @echo $@$(info MAKE_RESTARTS=$(MAKE_RESTARTS))include foo.xfoo.x: ; @touch $@blah.x: ; @echo $@',              '-B', 'MAKE_RESTARTS=#MAKEFILE#:4: foo.x: No such file or directoryMAKE_RESTARTS=1blah.xall');rmfiles('foo.x', 'blah.x');1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -