CC=gcc
LIBS = -lmcm
CFLAGS =
all: info

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