test: test.o
	cc -lgdk -o test test.o

test.o: test.c
	gcc -c -I/usr/lib/glib/include test.c

clean:
	rm test test.o
