CC = gcc LIBS = -lpthread -lsocket -lnsl DEFINE = -DUNIX all: srtp sender client srtp: srtp.cpp srtp_proto.h $(CC) $(DEFINE) -Wall -o srtp srtp.cpp $(LIBS) sender: sender.cpp srtp_api.h $(CC) $(OPTS) $(DEFINE) -o sender sender.cpp $(LIBS) client: client.cpp srtp_api.h $(CC) $(OPTS) $(DEFINE) -o client client.cpp $(LIBS)