include ../examples.conf 

TARGETS = clist

all: $(TARGETS)

clist: clist.cc
	$(CXXBUILD)

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

