diff options
author | Marvin Borner | 2021-12-11 16:48:12 +0100 |
---|---|---|
committer | Marvin Borner | 2021-12-11 16:48:12 +0100 |
commit | a46a5cf547127ade88ce9ced2cc459086f770d07 (patch) | |
tree | 2eb1aeaab078959d2d814aa5f2355cb418b60e1e /2021/11/Makefile | |
parent | f27e912d003742cbeee276029b1d4ff03d2725fb (diff) |
Mostly works
Diffstat (limited to '2021/11/Makefile')
-rw-r--r-- | 2021/11/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2021/11/Makefile b/2021/11/Makefile new file mode 100644 index 0000000..34bab3b --- /dev/null +++ b/2021/11/Makefile @@ -0,0 +1,19 @@ +DEBUG = -Wno-error -Og -g -s -fsanitize=undefined -fsanitize=address -fstack-protector-all +CFLAGS = -Wall -Wextra -Wno-error -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 |