.c.o: gcc -c -Wall $< LIBS= -lsocket -lnsl all: multiclient timeoutclient pausedclient garbage garbage: garbage.o support.o gcc -o garbage garbage.o support.o ${LIBS} multiclient: multiclient.o support.o gcc -o multiclient multiclient.o support.o ${LIBS} timeoutclient: timeoutclient.o support.o gcc -o timeoutclient timeoutclient.o support.o ${LIBS} pausedclient: pausedclient.o support.o gcc -o pausedclient pausedclient.o support.o ${LIBS} clean: rm *.o *~ pausedclient garbage multiclient timeoutclient