Changeset 503 for trunk/src/gmake/tests/scripts/targets
- Timestamp:
- Sep 15, 2006, 7:09:38 AM (19 years ago)
- Location:
- trunk/src/gmake/tests/scripts/targets
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/tests/scripts/targets/FORCE
r285 r503 1 # -*-perl-*- 2 1 3 $description = "The following tests rules without Commands or Dependencies."; 2 4 3 5 $details = "If the rule ...\n"; 4 5 if ($vos)6 {7 $delete_command = "delete_file";8 }9 else10 {11 $delete_command = "rm";12 }13 6 14 7 open(MAKEFILE,"> $makefile"); -
trunk/src/gmake/tests/scripts/targets/PHONY
r285 r503 1 # -*-perl-*- 2 1 3 $description = "The following tests the use of a PHONY target. It makes\n" 2 4 ."sure that the rules under a target get executed even if\n" … … 8 10 ."directory. Although this file exists, the rule under the target\n" 9 11 ."clean should still execute because of it's phony status."; 10 11 if ($vos)12 {13 $delete_command = "delete_file";14 }15 else16 {17 $delete_command = "rm";18 }19 12 20 13 $example = "EXAMPLE_FILE"; -
trunk/src/gmake/tests/scripts/targets/SILENT
r285 r503 1 # -*-perl-*- 2 1 3 $description = "The following tests the special target .SILENT. By simply\n" 2 4 ."mentioning this as a target, it tells make not to print\n" … … 5 7 $details = "This test is the same as the clean test except that it should\n" 6 8 ."not echo its command before deleting the specified file.\n"; 7 8 if ($vos)9 {10 $delete_command = "delete_file";11 }12 else13 {14 $delete_command = "rm";15 }16 9 17 10 $example = "EXAMPLE_FILE";
Note:
See TracChangeset
for help on using the changeset viewer.