CC=gcc
CFLAGS=-Wall

all: it

clean:
	rm -f it

%:	%.c
	$(CC) $(CFLAGS) -o $@ $<
