diff options
author | Marvin Borner | 2021-12-05 13:39:11 +0100 |
---|---|---|
committer | Marvin Borner | 2021-12-05 13:39:11 +0100 |
commit | b19dc6dd3da8e3b3fe6dc8e1faafd9606380de42 (patch) | |
tree | f61238568d773d8b3fa1d029d9933fdd72e4cf66 /2021/05/Makefile | |
parent | d039c980716fdc1dd83ae9bc9a54f1e0c9fdc85a (diff) |
muahahaha
Diffstat (limited to '2021/05/Makefile')
-rw-r--r-- | 2021/05/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2021/05/Makefile b/2021/05/Makefile new file mode 100644 index 0000000..4a881b7 --- /dev/null +++ b/2021/05/Makefile @@ -0,0 +1,19 @@ +DEBUG = -Wno-error -Og -g -s -fsanitize=undefined -fsanitize=address -fstack-protector-all +CFLAGS = -Wall -Wextra -Werror -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wformat=2 -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual -Wswitch-default -Wswitch-enum -Wunreachable-code -Wundef -Wold-style-definition -Wvla -pedantic-errors -Ofast + +# Not the best makefile but idc + +debug: + @gcc $(CFLAGS) $(DEBUG) solve.c -o solve.o -L/usr/lib -lcrypto + +build: + @gcc $(CFLAGS) solve.c -o solve.o -L/usr/lib -lcrypto + +clean: + @rm -f *.o + +run: debug + @./solve.o + +time: build + @./solve.o |