Changeset 503 in kBuild for trunk/src/gmake/tests/scripts/functions/wildcard
- Timestamp:
- Sep 15, 2006 5:09:38 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/tests/scripts/functions/wildcard
r285 r503 14 14 the '*' wildcard as in the first test"; 15 15 16 if ($vos)17 {18 $delete_command = "delete_file -no_ask";19 }20 else21 {22 $delete_command = "rm";23 }24 25 26 16 open(MAKEFILE,"> $makefile"); 27 17 … … 30 20 print MAKEFILE <<EOM; 31 21 .PHONY: print1 print2 clean 32 print1: ;\@echo \$( wildcard example.*)22 print1: ;\@echo \$(sort \$(wildcard example.*)) 33 23 print2: 34 \t\@echo \$( wildcard example.?)35 \t\@echo \$( wildcard example.[a-z0-9])36 \t\@echo \$( wildcard example.[!A-Za-z_\\!])24 \t\@echo \$(sort \$(wildcard example.?)) 25 \t\@echo \$(sort \$(wildcard example.[a-z0-9])) 26 \t\@echo \$(sort \$(wildcard example.[!A-Za-z_\\!])) 37 27 clean: 38 \t$delete_command \$( wildcard example.*)28 \t$delete_command \$(sort \$(wildcard example.*)) 39 29 EOM 40 30
Note:
See TracChangeset
for help on using the changeset viewer.