13 lines
235 B
Plaintext
13 lines
235 B
Plaintext
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
|