diff options
| author | Andrew <saintruler@gmail.com> | 2021-02-10 22:18:52 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-02-10 22:18:52 +0400 |
| commit | 83f659d36b8c64209b72e70583cb4f0a6852e7be (patch) | |
| tree | dabe841ec5bbb2a1aac6301f3e4dbb6774ca7860 /structures/Makefile | |
| parent | ee1fd8e4b8090cbc107af5c8d05fa1979f43f9fd (diff) | |
Заменил run.sh на Makefile и вынес реализацию стека с функциями в отдельный файл
Diffstat (limited to 'structures/Makefile')
| -rw-r--r-- | structures/Makefile | 9 |
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 |