diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-10 10:46:54 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-10 10:46:54 -0400 |
commit | 00f84e3b984904e36cbee502a470003ecd7d09cf (patch) | |
tree | 48836b7af6dc55724f789a75ebed4a7ce01be5fc /Makefile | |
parent | e6dfad81f8c893f95fe2922a075b82e2d262bde2 (diff) |
initial upload
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3c09c2f --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: + clang main.cpp -std=c++20 -I. -ggdb -g3 -O0 -fno-exceptions + ./a.out + @echo + g++ main.cpp -std=c++20 -I. -ggdb -g3 -O0 + ./a.out + +clean: + rm -f a.out + |