CXX=g++ -ansi -Wall -O2 -I.. -I../lib

all:	 wstest

wstest: wstest.o
	$(CXX) -o wstest wstest.o ../lib/ws.o

clean:
	-rm -rf *.o *~ wstest