OBJDIR = ../../objects

TARGETS = ${OBJDIR}/.objects   \
          ${OBJDIR}/.remoteobjects \
          ${OBJDIR}/test.info

all:	${TARGETS}

${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 $@

clean:
	-rm ${TARGETS}
