aboutsummaryrefslogtreecommitdiff
path: root/Занимательное программирование/5/1_huffman/build.ninja
blob: e8581f85cefa84025dcd459f011a89377a9c5a68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
cxxflags =

rule cxx
  command = g++ $cxxflags -c -o $out $in

rule ld
  command = g++ $cxxflags $in -o $out

build build/huffman.o: cxx huffman.cpp | huffman.hpp
build build/huffman: ld main.cpp build/huffman.o

default build/huffman