SRCS = example.cpp

CC  = g++
all: example

example: $(SRCS) 
	$(CC) -o example $(SRCS) 


clean: 
	\rm example mugClient
