From 3aa641542918765f6ceb039cfa64ff6f58597eb2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 30 Nov 2021 21:53:46 +0100 Subject: Hype for tomorrow --- 2015/01/Makefile | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to '2015/01/Makefile') diff --git a/2015/01/Makefile b/2015/01/Makefile index 769d06d..57e1574 100644 --- a/2015/01/Makefile +++ b/2015/01/Makefile @@ -1,10 +1,19 @@ -.PHONY: solve.c +DEBUG = -Wno-error -Og -ggdb3 -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 -solve.o: solve.c - @gcc $+ -o $@ +# 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: solve.o +run: debug + @./solve.o + +time: build @./solve.o -- cgit v1.2.3