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

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