diff options
Diffstat (limited to 'cpp_alloc_test/Makefile')
-rw-r--r-- | cpp_alloc_test/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
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 |