diff options
author | Marvin Borner | 2021-12-06 12:20:47 +0100 |
---|---|---|
committer | Marvin Borner | 2021-12-06 12:20:47 +0100 |
commit | f7c5fc36e16664e91343085f5a1c7c87cb76c0ba (patch) | |
tree | 7bfe50039d926a268eaeada05d05a38f23016509 /2021/06/Makefile | |
parent | 7fc45a3ac60662a87c91393d311e4e4246fa7f5c (diff) |
Efficiency
Diffstat (limited to '2021/06/Makefile')
-rw-r--r-- | 2021/06/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2021/06/Makefile b/2021/06/Makefile new file mode 100644 index 0000000..4a881b7 --- /dev/null +++ b/2021/06/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 |