all: gadget

gadget.o: gadget.c
	cc -c -I/usr/lib/glib/include/ -I/export/cs306/gimp-1.0.4/ gadget.c 

effects.o: effects.c
	cc -c -I/usr/lib/glib/include/ -I/export/cs306/gimp-1.0.4/ effects.c 

gadget: gadget.o effects.o
	cc -o gadget gadget.o effects.o -lgtk -lgdk -lgimp -lgimpui
