1
0

Добавлена первая задача пятой главы

This commit is contained in:
2026-02-03 18:12:44 +01:00
parent 2499f8471c
commit 518590d595
6 changed files with 478 additions and 5 deletions

View File

@@ -0,0 +1,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