OBJDIR = ../../objects

all:  	${OBJDIR}/.objects     \
        ${OBJDIR}/.remoteobjects \
        ${OBJDIR}/test.info

${OBJDIR}/.objects:objects.tmp
	-mkdir ${OBJDIR}
	sed "s*JGOFSDIR*${JGOFSDIR}*g" objects.tmp > $@
${OBJDIR}/.remoteobjects:remoteobjects.tmp
	sed "s*JGOFSDIR*${JGOFSDIR}*g" remoteobjects.tmp > $@
${OBJDIR}/test.info:testinfo.tmp
	cp testinfo.tmp $@

