
APP = client_example
CFLAGS += -I../../include -std=c++11
LDFLAGS += -lstpapi -lprotobuf-lite -lpthread -L../../lib

all: $(APP)
	
$(APP): client_example.cpp
	g++ $< -o $@ $(CFLAGS) $(LDFLAGS)

.PHONY: clean
clean:
	rm -f $(APP)

