From ab607fc39b6dfc766f7481c33e5f1cf35a2f55d9 Mon Sep 17 00:00:00 2001 From: stderr64 Date: Thu, 24 Oct 2024 23:04:43 +0300 Subject: Recreated repository --- cpp_alloc_test/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cpp_alloc_test/Makefile (limited to 'cpp_alloc_test/Makefile') diff --git a/cpp_alloc_test/Makefile b/cpp_alloc_test/Makefile new file mode 100644 index 0000000..cc90ca6 --- /dev/null +++ b/cpp_alloc_test/Makefile @@ -0,0 +1,7 @@ +CC=g++ + +rel: + $(CC) -pedantic -Werror -Wall -O2 alloctest.cpp -o alloctest + +debug: + $(CC) -pedantic -Werror -Wall -O2 -ggdb alloctest.cpp -o alloctest -- cgit v1.2.3-86-g962b