CC=clang
SOURCES = $(wildcard *.c)
EXECS = $(SOURCES:%.c=%)
CFLAGS=-g -Wall -Wextra -pedantic -std=c11

all: $(EXECS)

clean:
	rm $(EXECS)
