Přesun souborů z jiného repozitáře.

This commit is contained in:
2026-01-25 17:18:31 +01:00
parent aee44ab3a8
commit 4fbf4c11e5
4 changed files with 336 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
all:
gcc -DNDEBUG b2t.c -o b2t
gcc -DNDEBUG t2b.c -o t2b
debug:
gcc b2t.c -o b2t
gcc t2b.c -o t2b
b2t:
gcc -DNDEBUG b2t.c -o b2t
t2b:
gcc -DNDEBUG t2b.c -o t2b
clean:
rm -f b2t t2b