diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-16 20:06:25 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-16 20:06:25 -0500 |
commit | 0969c1f24537850678b299905806f8d31b74fe87 (patch) | |
tree | e6e9637eda07a5c7185e0c018905fe2df6e4023c /Makefile | |
parent | c59b6bc9fe5c1e80fa05d8f21f07b04044ba3d13 (diff) |
add source
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1978ffb --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +#CXX := clang++-19 +CXXFLAGS += -O0 -std=c++23 -Wall -Wextra -Wpedantic -ggdb -g3 + +all: main + +clean: + rm -f main + |