CC     = gcc
CFLAGS = -std=c11 -Wall -Wextra -Wpedantic -O0 -g

simple: simple.c

clean:
	$(RM) simple
