summaryrefslogtreecommitdiff
path: root/bin-trees
diff options
context:
space:
mode:
Diffstat (limited to 'bin-trees')
-rw-r--r--bin-trees/Makefile33
-rw-r--r--bin-trees/zadachitree.pdfbin0 -> 30720 bytes
2 files changed, 33 insertions, 0 deletions
diff --git a/bin-trees/Makefile b/bin-trees/Makefile
new file mode 100644
index 0000000..3e3ce36
--- /dev/null
+++ b/bin-trees/Makefile
@@ -0,0 +1,33 @@
+CXX=g++
+CFLAGS=-g -Wall
+COMPILE=$(CXX) $(CFLAGS)
+
+task17:
+ $(COMPILE) -o task.out task17.cpp
+test17: task17
+ @printf "\n" | ./task.out
+ @printf "Answer: \n"
+
+task18:
+ $(COMPILE) -o task.out task18.cpp
+test18: task18
+ @printf "\n" | ./task.out
+ @printf "Answer: \n"
+
+task19:
+ $(COMPILE) -o task.out task19.cpp
+test19: task19
+ @printf "\n" | ./task.out
+ @printf "Answer: \n"
+
+task14:
+ $(COMPILE) -o task.out task14.cpp
+test14: task14
+ @printf "\n" | ./task.out
+ @printf "Answer: \n"
+
+clean:
+ rm -f task.out *.zip
+
+archive: clean
+ zip archive.zip *.cpp *.h
diff --git a/bin-trees/zadachitree.pdf b/bin-trees/zadachitree.pdf
new file mode 100644
index 0000000..e0882ac
--- /dev/null
+++ b/bin-trees/zadachitree.pdf
Binary files differ