TARGET=base

all:
	gcc $(TARGET).c -o $(TARGET) `pkg-config --cflags --libs gtk+-2.0`

clean:
	rm -f *~ *.o $(TARGET)