John Barboza | 499868c | 2018-07-18 22:58:30 -0400 | [diff] [blame^] | 1 | rule cc |
2 | command = $cc -MMD -MF $out.d $defines $includes $cflags $cflags_c -c $in -o $out | ||||
3 | description = CC $out | ||||
4 | depfile = $out.d | ||||
5 | deps = gcc | ||||
6 | rule cxx | ||||
7 | command = $cxx -MMD -MF $out.d $defines $includes $cflags $cflags_cc -c $in -o $out | ||||
8 | description = CXX $out | ||||
9 | depfile = $out.d | ||||
10 | deps = gcc | ||||
11 | rule alink_thin | ||||
12 | command = rm -f $out && $ar rcsT $out $in | ||||
13 | description = AR $out | ||||
14 | rule link | ||||
15 | command = $ld $ldflags -o $out $in $libs $solibs | ||||
16 | description = LINK $out |