diff options
author | Marvin Borner | 2021-12-09 12:47:13 +0100 |
---|---|---|
committer | Marvin Borner | 2021-12-09 12:47:13 +0100 |
commit | 9eabd251029d1da7f2909af0520f229dd74be3ea (patch) | |
tree | 734cefb377346adb468ee2b3f42afbcc6131d141 /2021/09/Makefile | |
parent | 35bd5c59da5aa1869f433218fc37dbd22b8b0793 (diff) |
hehe
Diffstat (limited to '2021/09/Makefile')
-rw-r--r-- | 2021/09/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2021/09/Makefile b/2021/09/Makefile new file mode 100644 index 0000000..da646cc --- /dev/null +++ b/2021/09/Makefile @@ -0,0 +1,19 @@ +DEBUG = -Wno-error -Og -g -s -fsanitize=undefined -fsanitize=address -fstack-protector-all +CFLAGS = -std=gnu99 -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 -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 |