diff --git a/projekt 1/Makefile b/projekt 1/Makefile new file mode 100644 index 0000000..c85a49b --- /dev/null +++ b/projekt 1/Makefile @@ -0,0 +1,8 @@ +build: + ccache g++ main.cpp + +run: + ccache g++ main.cpp; ./a.out + +clean: + rm -f ./a.out