blob: 10de7524ecb5c3bb077dc250b043a6d75f1ad9ce (
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/sound: ld main.cpp build/huffman.o
default build/sound
|