CC=gcc
CFLAGS +=
LIBS = -lmcm
all: control

control: main.c
	$(CC) -Wall -g $(CFLAGS) $^ -o $@ $(LIBS)
clean:
	rm -f control *.o
