1
0

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

This commit is contained in:
2026-02-27 17:49:09 +01:00
parent 82ae29cb8a
commit 1768f21de7
12 changed files with 1657 additions and 0 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/context.o: cxx context.cpp | context.hpp
build build/context: ld main.cpp build/context.o
default build/context