> Shouldn't you just check return codes from svn, wget or curl?

Ah, of course. ... But then ... MAKE is actually doing that for me. Only 
that

axiom.as axextend.as axlit.as stub.as:
        $(SVNCAT) $(ALDORBASICS)/$@ > $@

aborts with an error and leaves an empty file $@, i.e. axiom.as. So I 
guess, I have to wrap this into an if-statement.

axiom.as axextend.as axlit.as stub.as:
        if $(SVNCAT) $(ALDORBASICS)/$@ > [EMAIL PROTECTED]; then \
          mv [EMAIL PROTECTED] $@; \
        else \
          rm [EMAIL PROTECTED]; false;
        fi;

or forget about the "else" branch and add "rm *.tmp" to the "clean" target.

Ralf

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"FriCAS - computer algebra system" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/fricas-devel?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to