File: deps.awk

package info (click to toggle)
mawk 1.3.4.20260129-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,244 kB
  • sloc: ansic: 19,998; sh: 4,627; yacc: 1,182; awk: 903; makefile: 301
file content (66 lines) | stat: -rwxr-xr-x 1,860 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/mawk -f
# $MawkId: deps.awk,v 1.4 2023/10/31 22:58:49 tom Exp $
# vile: notab ts=4 sw=4

# find include dependencies in C source
#
# mawk -f deps.awk  C_source_files
#         -- prints a dependency list suitable for make

BEGIN {
    stack_index = 0 # stack[] holds the input files

    for(i = 1 ; i < ARGC ; i++)
    {
        file = ARGV[i]
        if ( file !~ /\.[cC]$/ )  continue  # skip it
        outfile = substr(file, 1, length(file)-2) ".o"

        # INCLUDED[] stores the set of included files
        # -- start with the empty set
        for( j in INCLUDED ) delete INCLUDED[j]

        while ( 1 )
        {
            if ( getline line < file <= 0 )  # no open or EOF
            {
                if ( stack_index == 0 )  break # empty stack
                else
                {
                    file = stack[ stack_index-- ]
                    continue
                }
            }

            if ( line ~ /^#include[ \t]+".*"/ )
                split(line, X, "\"")  # filename is in X[2]
            else if ( line ~ /^#include[ \t]+<.*>/ )
                split(line, X, "[<>]")  # filename is in X[2]
            else
                continue;

            if ( X[2] in INCLUDED ) # we've already included it
                continue
            if ( getline line < X[2] <= 0 )  # no open or EOF
                continue;

            #push current file
            stack[ ++stack_index ] = file
            INCLUDED[ file = X[2] ] = ""
        }  # end of while

        # test if INCLUDED is empty
        flag = 0 # on once the front is printed
        for( j in INCLUDED )
        {
            if ( ! flag )
            { printf "%s : %s" , outfile, j ; flag = 1 }
            else  printf " %s" , j
            close(j);
        }

        if ( flag )  print ""

    }# end of loop over files in ARGV[i]

}