File: build_linux.ninja.template

package info (click to toggle)
generate-ninja 0.0~git20210128.09c9e5e-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,848 kB
  • sloc: cpp: 79,412; python: 2,041; lisp: 129; objc: 122; makefile: 25; sh: 14
file content (13 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
rule cxx
  command = $cxx -MMD -MF $out.d $includes $cflags -c $in -o $out
  description = CXX $out
  depfile = $out.d
  deps = gcc

rule alink_thin
  command = rm -f $out && $ar rcsT $out $in
  description = AR $out

rule link
  command = $ld $ldflags -o $out -Wl,--start-group $in $libs -Wl,--end-group $solibs
  description = LINK $out