targets : stdTcpServ stdTcpClnt ourTcpServ ourTcpClnt

stdTcpServ : tcpserv.c util.c
	gcc -Wall -DSTANDARD -o $@ $<

stdTcpClnt : tcpclnt.c util.c
	gcc -Wall -DSTANDARD -o $@ $<

ourTcpServ : tcpserv.c util.c
	gcc -Wall -o $@ $<

ourTcpClnt : tcpclnt.c util.c
	gcc -Wall -o $@ $<

clean :
	rm -f stdTcpServ stdTcpClnt ourTcpServ ourTcpClnt
