CXXFLAGS=-g -O0 -I.
LIBS=-lssl -lboost_system -lssh -lpthread -lz -lcrypto -lrt

all:boostDriver

boostDriver:boostDriver.o
	g++ -o $@ $^ $(LIBS)

clean:
	rm -f *.o boostDriver

