]> wirehaze git hosting - graph-theory.git/blob - Makefile

wirehaze git hosting

add broken prim
[graph-theory.git] / Makefile
1 CC := gcc
2 CPPFLAGS := -I.
3 CFLAGS := -std=gnu90 \
4 -pedantic \
5 -pedantic-errors \
6 -Wall \
7 -Wextra \
8 -Wconversion \
9 -Wstrict-prototypes \
10 -Wshadow \
11 -Wundef \
12 -Wdouble-promotion \
13 -Wno-variadic-macros
14
15 srcs := $(wildcard **/*.c)
16 objs := $(srcs:.c=.o)
17 bin := gt
18
19 all : $(bin)
20
21 clean :
22 rm -f $(bin) $(objs)
23
24 .PHONY : all clean
25
26 $(bin) : $(objs)