From 1a0493de3766b67bbfaa57c4d4bdfb9133deb5d3 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 3 Dec 2021 19:56:03 +0100 Subject: hmm --- 2021/03/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 2021/03/Makefile (limited to '2021/03/Makefile') diff --git a/2021/03/Makefile b/2021/03/Makefile new file mode 100644 index 0000000..4a881b7 --- /dev/null +++ b/2021/03/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 -- cgit v1.2.3