CXX=g++
CXXFLAGS= 
LDFLAGS=-lqpidclient

PROGRAMS=declare_queues direct_producer listener

all: $(PROGRAMS)

clean:
	rm -f $(PROGRAMS) 
