all: parent.exe child.exe

parent.exe: parent.cpp Makefile
	g++ parent.cpp -g -Zomf -lsocket
	
child.exe: child.cpp Makefile
	g++ child.cpp -g -Zomf -lsocket
