aboutsummaryrefslogtreecommitdiff
path: root/2015/03/Makefile
blob: 57e15740eb6a661cff69d15d73590ef26b1091ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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

# 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