diff options
author | Marvin Borner | 2021-12-24 17:37:34 +0100 |
---|---|---|
committer | Marvin Borner | 2021-12-24 17:37:34 +0100 |
commit | 2ca27006c504ea4acfddaa1774924e009db64971 (patch) | |
tree | 1ff2d9bf71c32ab8d89eda3fde5c261c115684bb /2021/24/Makefile | |
parent | 58f86002e905a8123bd94df8078e0ce697f4fe26 (diff) |
yay
Diffstat (limited to '2021/24/Makefile')
-rw-r--r-- | 2021/24/Makefile | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/2021/24/Makefile b/2021/24/Makefile index 9295d89..9b69a44 100644 --- a/2021/24/Makefile +++ b/2021/24/Makefile @@ -1,4 +1,19 @@ -run: - @node solve.js +DEBUG = -Wno-error -Og -g -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 -time: run +# 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 |