mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
20 lines
484 B
Plaintext
20 lines
484 B
Plaintext
rule cc
|
|
command = $cc -MMD -MF $out.d $defines $includes $cflags $cflags_c -c $in -o $out
|
|
description = CC $out
|
|
depfile = $out.d
|
|
deps = gcc
|
|
|
|
rule cxx
|
|
command = $cxx -MMD -MF $out.d $defines $includes $cflags $cflags_cc -c $in -o $out
|
|
description = CXX $out
|
|
depfile = $out.d
|
|
deps = gcc
|
|
|
|
rule alink_thin
|
|
command = rm -f $out && libtool -static -o $out $in
|
|
description = AR $out
|
|
|
|
rule link
|
|
command = $ld $ldflags -o $out $in $solibs $libs
|
|
description = LINK $out
|