From 3f0cc847e469ff2c2f1774c0b5a52b9a7d542d46 Mon Sep 17 00:00:00 2001 From: VectorKappa Date: Wed, 1 Mar 2023 14:34:41 +0100 Subject: [PATCH] Dodano Makefile - Peak programming efficiency --- projekt 1/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 projekt 1/Makefile 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