1
0

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

This commit is contained in:
2026-02-13 22:03:01 +01:00
parent 518590d595
commit 82ae29cb8a
10 changed files with 10188 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
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/grey.o: cxx grey.cpp | grey.hpp stb_image.h stb_image_write.h
build build/grey: ld main.cpp build/grey.o build/huffman.o
default build/grey