include ../examples.conf 

TARGETS = toolbar

all: $(TARGETS)

toolbar: toolbar.cc
	$(CXXBUILD)

clean: 
	rm -Rf .libs *.o *.lo core $(TARGETS)

