
CC = gcc

calendar: calendar.c
	$(CC) `gtk-config --cflags` calendar.c -o calendar `gtk-config --libs`

clean: 
	rm -f calendar
