diff options
Diffstat (limited to '2015/04/Makefile')
-rw-r--r-- | 2015/04/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2015/04/Makefile b/2015/04/Makefile new file mode 100644 index 0000000..f757e4a --- /dev/null +++ b/2015/04/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 + +build: + @gcc $(CFLAGS) solve.c -o solve.o + +clean: + @rm -f *.o + +run: debug + @./solve.o + +time: build + @./solve.o |