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

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