aboutsummaryrefslogtreecommitdiff
path: root/2021/08/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2021-12-08 15:29:21 +0100
committerMarvin Borner2021-12-08 15:29:21 +0100
commit35bd5c59da5aa1869f433218fc37dbd22b8b0793 (patch)
treee0f66f0f3897a14191a742999df78e0e27084841 /2021/08/Makefile
parent6d2c90d4f74bad1a99b80145be55e84461a8a307 (diff)
Shortest possible solution
Diffstat (limited to '2021/08/Makefile')
-rw-r--r--2021/08/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/2021/08/Makefile b/2021/08/Makefile
new file mode 100644
index 0000000..4a881b7
--- /dev/null
+++ b/2021/08/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