diff options
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 |