SRCS = stl.cpp

CC  = g++
all: example stl

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

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


clean: 
	\rm example mugClient
