SOCKETFILES	= \
		robot1	\
		robot2	\
		camera1	\
		camera2	\
		learn	\
		bemmel1	\
		bemmel2

all: ${SOCKETFILES}

robot1::
	@if test \! -f robot1 ;\
	then echo making robot1 ;\
	echo 5001 > robot1 ;\
	fi

robot2::
	@if test \! -f robot2 ;\
	then echo making robot2 ;\
	echo 5002 > robot2 ;\
	fi

camera1::
	@if test \! -f camera1 ;\
	then echo making camera1 ;\
	echo 5003 > camera1 ;\
	fi

camera2::
	@if test \! -f camera2 ;\
	then echo making camera2 ;\
	echo 5004 > camera2 ;\
	fi

learn::
	@if test \! -f learn ;\
	then echo making learn ;\
	echo 5005 > learn ;\
	fi

bemmel1::
	@if test \! -f bemmel1 ;\
	then echo making bemmel1 ;\
	echo 5006 > bemmel1 ;\
	fi

bemmel2::
	@if test \! -f bemmel2 ;\
	then echo making bemmel2 ;\
	echo 5007 > bemmel2 ;\
	fi
