blob: 27339a7f63192b9c507d31f66ac0716dcf1f42ea [file] [log] [blame]
[email protected]95317c92014-01-27 18:56:18 +00001rule cxx
Nico Weberde542972019-11-16 15:32:18 -05002 command = $cxx -MMD -MF $out.d $includes $cflags -c $in -o $out
[email protected]95317c92014-01-27 18:56:18 +00003 description = CXX $out
4 depfile = $out.d
5 deps = gcc
6
7rule alink_thin
anlex Nfeb27462024-04-23 17:14:08 +08008 command = $ar rcsT $out $in
[email protected]95317c92014-01-27 18:56:18 +00009 description = AR $out
10
11rule link
timb21d1192016-07-01 12:23:08 -070012 command = $ld $ldflags -o $out -Wl,--start-group $in $libs -Wl,--end-group $solibs
[email protected]95317c92014-01-27 18:56:18 +000013 description = LINK $out