From 82ae29cb8a59a1e093190d14f8c5097658545a12 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 13 Feb 2026 22:03:01 +0100 Subject: =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B0?= =?UTF-8?q?=20=D0=B2=D1=82=D0=BE=D1=80=D0=B0=D1=8F=20=D0=B7=D0=B0=D0=B4?= =?UTF-8?q?=D0=B0=D1=87=D0=B0=20=D0=BF=D1=8F=D1=82=D0=BE=D0=B9=20=D0=B3?= =?UTF-8?q?=D0=BB=D0=B0=D0=B2=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../5/2_grey/build.ninja" | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 "\320\227\320\260\320\275\320\270\320\274\320\260\321\202\320\265\320\273\321\214\320\275\320\276\320\265 \320\277\321\200\320\276\320\263\321\200\320\260\320\274\320\274\320\270\321\200\320\276\320\262\320\260\320\275\320\270\320\265/5/2_grey/build.ninja" (limited to 'Занимательное программирование/5/2_grey/build.ninja') diff --git "a/\320\227\320\260\320\275\320\270\320\274\320\260\321\202\320\265\320\273\321\214\320\275\320\276\320\265 \320\277\321\200\320\276\320\263\321\200\320\260\320\274\320\274\320\270\321\200\320\276\320\262\320\260\320\275\320\270\320\265/5/2_grey/build.ninja" "b/\320\227\320\260\320\275\320\270\320\274\320\260\321\202\320\265\320\273\321\214\320\275\320\276\320\265 \320\277\321\200\320\276\320\263\321\200\320\260\320\274\320\274\320\270\321\200\320\276\320\262\320\260\320\275\320\270\320\265/5/2_grey/build.ninja" new file mode 100644 index 0000000..e3b0b0a --- /dev/null +++ "b/\320\227\320\260\320\275\320\270\320\274\320\260\321\202\320\265\320\273\321\214\320\275\320\276\320\265 \320\277\321\200\320\276\320\263\321\200\320\260\320\274\320\274\320\270\321\200\320\276\320\262\320\260\320\275\320\270\320\265/5/2_grey/build.ninja" @@ -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 -- cgit v1.2.3