/[make]/make/tests/scripts/functions/wildcard
ViewVC logotype

Diff of /make/tests/scripts/functions/wildcard

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by psmith, Sun May 16 19:16:55 2004 UTC revision 1.4 by bosk, Sat Aug 13 19:24:49 2005 UTC
# Line 29  open(MAKEFILE,"> $makefile"); Line 29  open(MAKEFILE,"> $makefile");
29    
30  print MAKEFILE <<EOM;  print MAKEFILE <<EOM;
31  .PHONY: print1 print2 clean  .PHONY: print1 print2 clean
32  print1: ;\@echo \$(wildcard example.*)  print1: ;\@echo \$(sort \$(wildcard example.*))
33  print2:  print2:
34  \t\@echo \$(wildcard example.?)  \t\@echo \$(sort \$(wildcard example.?))
35  \t\@echo \$(wildcard example.[a-z0-9])  \t\@echo \$(sort \$(wildcard example.[a-z0-9]))
36  \t\@echo \$(wildcard example.[!A-Za-z_\\!])  \t\@echo \$(sort \$(wildcard example.[!A-Za-z_\\!]))
37  clean:  clean:
38  \t$delete_command \$(wildcard example.*)  \t$delete_command \$(sort \$(wildcard example.*))
39  EOM  EOM
40    
41  # END of Contents of MAKEFILE  # END of Contents of MAKEFILE

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26