#include ../Makefile.local
#.C.o:
#	g++ `gtk-config --cflags` -fPIC -c $<

INTSRC= 
INTOBJ=$(INTSRC:.C=.o)
LIB = libGtkWidgets.so

HDR_PATH=$(DESTDIR)/usr/include/mffm


all: 

ex:
	g++ -ggdb `gtk-config --cflags` ButtonsTest.C -o ButtonsTest `gtk-config --libs`
	g++ -ggdb `gtk-config --cflags` LabelsTest.C -o LabelsTest `gtk-config --libs`
	g++ -ggdb `gtk-config --cflags` ProgressBarTest.C -o ProgressBarTest `gtk-config --libs`
#	$(CC) `gtk-config --cflags` `gtk-config --libs` -L/home/flatmax/lib -l3DPanner colourWheelTest.C -o colourWheelTest

install:
	install -d $(HDR_PATH)
	install -m644 *.H $(HDR_PATH)

clean:
	rm -f *~ $(INTOBJ) lib*.so.* a.out *.o $(LIB) ButtonsTest colourWheelTest colourWheelTest ProgressBarTest LabelsTest
