%.h: %.h.T
rm -f $@
- ${AT3} $< >$@ || rm -f $@
+ ${AT3} $< >$@ || ( rm -f $@; false )
chmod -w $@ >/dev/null
%.o: %.cpp
%.c: %.c.T
rm -f $@
- ${AT3} $< >$@ || rm -f $@
+ ${AT3} $< >$@ || ( rm -f $@; false )
chmod -w $@ >/dev/null
%.cpp: %.cpp.T
rm -f $@
- ${AT3} $< >$@ || rm -f $@
+ ${AT3} $< >$@ || ( rm -f $@; false )
chmod -w $@ >/dev/null
%.sh: %.l gen_begin gen_sample_job
JobStatus.cpp: StatusAttrNames.pl
-EventAttrNames.pl StatusAttrNames.pl:
+EventAttrNames.pl:
rm -f $@
- ln -s ${stagedir}/share/${lbprefix}/at3/$@ $@
+ ln -s ${stagedir}/share/perl/gLite/LB/$@ $@
dist: distsrc distbin
rm -rvf *.o *.lo .libs lib* *.c *.cpp *.h *.dox producer_test notify C/ CPP/
rm -rvf ${LIB} ${THRLIB} ${TOOLS} logevent ${PLUSLIB} ${THRPLUSLIB} ${MAN_GZ} ${MAN8_GZ}
rm -rvf ${EXAMPLES} ${EXAMPLES_CL} ${EXAMPLES_CL_THR} ${sh_PROGS}
- rm -f EventAttrNames.pl StatusAttrNames.pl
+ rm -f EventAttrNames.pl
rm -vf ${globalprefix} ${lbprefix}
rm -rvf log.xml project/ rpmbuild/ RPMS/ tgz/
if (/^\@\@\@}$/) {
$code .= "1;\n";
print "#line $startcode \"$ARGV\"\n/* begin */\n" if $lines;
- eval $code or warn "eval: $@ at $ARGV:$.\n";
+ eval $code or die "eval: $@ at $ARGV:$.\n";
my $nxtline = $.+1;
print "/* end */\n#line $nxtline \"$ARGV\"\n" if $lines;
undef $code;