mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			316 B
		
	
	
	
		
			Awk
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			316 B
		
	
	
	
		
			Awk
		
	
	
	
	
	
| BEGIN {
 | |
|     print "texis = \\";
 | |
|     for(x = 1; x < ARGC; x++)
 | |
|     {
 | |
| 	input[0] = ARGV[x];
 | |
| 	print ARGV[x], "\\";
 | |
| 	for (s = 0; s >= 0; s--)
 | |
| 	{
 | |
| 	    while ((getline < input[s]) > 0)
 | |
| 	    {
 | |
| 		if ($1 == "@include")
 | |
| 		{
 | |
| 		    input[++s] = $2;
 | |
| 		    print $2, "\\";
 | |
| 		}
 | |
| 	    }
 | |
| 	    close(input[s]);
 | |
| 	}
 | |
|     }
 | |
|     print "";
 | |
| }
 |