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

📄 secondary

📁 Linux 下的编译工具
💻
字号:
#! -*-perl-*-$description = "Test the behaviour of the .SECONDARY target.";$details = "\Test the behavior of the .SECONDARY special target.Create a makefile where a file would not normally be consideredintermediate, then specify it as .SECONDARY.  Build and note that it'snot automatically deleted.  Delete the file.  Rebuild to ensure thatit's not created if it doesn't exist but doesn't need to be built.Change the original and ensure that the secondary file and the ultimatetarget are both rebuilt, and that the secondary file is not deleted.Try this with implicit rules and explicit rules: both should work.\n";open(MAKEFILE,"> $makefile");print MAKEFILE <<'EOF';.SECONDARY: foo.e# Implicit rule test%.d : %.e ; cp $< $@%.e : %.f ; cp $< $@foo.d: foo.e# Explicit rule testfoo.c: foo.e ; cp $< $@EOFclose(MAKEFILE);# TEST #1&utouch(-20, 'foo.f');&run_make_with_options($makefile,'foo.d',&get_logfile);$answer = "cp foo.f foo.e\ncp foo.e foo.d\n";&compare_output($answer, &get_logfile(1));# TEST #2unlink('foo.e');&run_make_with_options($makefile,'foo.d',&get_logfile);$answer = "$make_name: `foo.d' is up to date.\n";&compare_output($answer, &get_logfile(1));# TEST #3&utouch(-10, 'foo.d');&touch('foo.f');&run_make_with_options($makefile,'foo.d',&get_logfile);$answer = "cp foo.f foo.e\ncp foo.e foo.d\n";&compare_output($answer, &get_logfile(1));# TEST #4&run_make_with_options($makefile,'foo.c',&get_logfile);$answer = "cp foo.e foo.c\n";&compare_output($answer, &get_logfile(1));# TEST #5unlink('foo.e');&run_make_with_options($makefile,'foo.c',&get_logfile);$answer = "$make_name: `foo.c' is up to date.\n";&compare_output($answer, &get_logfile(1));# TEST #6&utouch(-10, 'foo.c');&touch('foo.f');&run_make_with_options($makefile,'foo.c',&get_logfile);$answer = "cp foo.f foo.e\ncp foo.e foo.c\n";&compare_output($answer, &get_logfile(1));unlink('foo.f', 'foo.e', 'foo.d', 'foo.c');# TEST #7 -- test the "global" .SECONDARY, with no targets.$makefile2 = &get_tmpfile;open(MAKEFILE, "> $makefile2");print MAKEFILE <<'EOF';.SECONDARY:final: intermediateintermediate: sourcefinal intermediate source:	echo $< > $@EOFclose(MAKEFILE);&utouch(-10, 'source');touch('final');&run_make_with_options($makefile2, '', &get_logfile);$answer = "$make_name: `final' is up to date.\n";&compare_output($answer, &get_logfile(1));unlink('source', 'final', 'intermediate');# TEST #8 -- test the "global" .SECONDARY, with .PHONY.touch('version2');run_make_test('.PHONY: version.SECONDARY:version2: version ; @echo GOODall: version2',              'all', 'GOOD');unlink('version2');# This tells the test driver that the perl test script executed properly.1;

⌨️ 快捷键说明

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