diff options
Diffstat (limited to 'structures/Makefile')
| -rw-r--r-- | structures/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/structures/Makefile b/structures/Makefile index d2d7739..7dacd52 100644 --- a/structures/Makefile +++ b/structures/Makefile @@ -1,5 +1,5 @@ CXX=g++ -CFLAGS=-Wall +CFLAGS=-g -Wall COMPILE=$(CXX) $(CFLAGS) task5: @@ -10,5 +10,10 @@ task8: test8: task8 printf "10\n1 1 2 3 2 4 3 5 4 1" | ./task.out +task14: + $(COMPILE) -o task.out task14.cpp +test14: task14 + printf "10\na 2 - e * ^ f + & 0 )" | ./task.out + clean: rm task.out |