CXX=g++
CXXFLAGS= 
LDFLAGS=-lqpidclient

PROGRAMS=client server

all: $(PROGRAMS)

clean:
	rm -f $(PROGRAMS) 
