summaryrefslogtreecommitdiff
path: root/structures/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'structures/Makefile')
-rw-r--r--structures/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/structures/Makefile b/structures/Makefile
new file mode 100644
index 0000000..8694df6
--- /dev/null
+++ b/structures/Makefile
@@ -0,0 +1,9 @@
+CXX=g++
+CFLAGS=-Wall
+COMPILE=$(CXX) $(CFLAGS)
+
+task5:
+ $(COMPILE) -o task.out task5.cpp
+
+clean:
+ rm task.out