Re: [O] Reloading uncompiled and testing from several git branches

2013-02-18 Thread François Pinard
Achim Gratz writes: > François Pinard writes: >> Any Makefile which lists dependencies while expecting them to be >> satisfied sequentially, one after another, is broken. Make does not >> (theoretically) guarantee the order, while in practice, all "make" >> programs I know satisfy dependencies

Re: [O] Reloading uncompiled and testing from several git branches

2013-02-18 Thread Achim Gratz
François Pinard writes: > Any Makefile which lists dependencies while expecting them to be > satisfied sequentially, one after another, is broken. Make does not > (theoretically) guarantee the order, while in practice, all "make" > programs I know satisfy dependencies from left to right. Well, if

Re: [O] Reloading uncompiled and testing from several git branches

2013-02-18 Thread Nicolas Richard
François Pinard writes: > Any Makefile which lists dependencies while expecting them to be > satisfied sequentially, one after another, is broken. Make does not > (theoretically) guarantee the order, while in practice, all "make" > programs I know satisfy dependencies from left to right. I can t

Re: [O] Reloading uncompiled and testing from several git branches

2013-02-16 Thread François Pinard
Achim Gratz writes: > .PHONY: testclean # in case you'll ever have a file named "testclean" > testclean: test clean > In general all such targets that are simple combinations of existing > teargets can be added that way. Allow me a pedantic nit-pick, yet nothing so important in practice n

Re: [O] Reloading uncompiled and testing from several git branches

2013-02-16 Thread Eric Abrahamsen
Achim Gratz writes: > Bastien writes: >> Yes, that's the mistake I often did. Especially because make test >> compiles the file and do not deleted the compiled files. >> >> Maybe we can have make testclean = make test && make clean >> >> Achim, would that be useful? > > We already have "make tes

Re: [O] Reloading uncompiled and testing from several git branches

2013-02-16 Thread Bastien
Hi Achim, Achim Gratz writes: > We already have "make test-dirty" for testing without doing a compile. > However, if you'd rather have that target, you can easily add it to > local.mk: > > .PHONY: testclean # in case you'll ever have a file named "testclean" > testclean: test clean > > In g

Re: [O] Reloading uncompiled and testing from several git branches

2013-02-16 Thread Achim Gratz
Bastien writes: > Yes, that's the mistake I often did. Especially because make test > compiles the file and do not deleted the compiled files. > > Maybe we can have make testclean = make test && make clean > > Achim, would that be useful? We already have "make test-dirty" for testing without doin

[O] Reloading uncompiled and testing from several git branches (was: Macro question with new texinfo exporter)

2013-02-16 Thread Bastien
(Updating the subject.) Eric Abrahamsen writes: > Related to this -- how do you folks handle multiple local git branches? > Do you always run uncompiled, and follow every git checkout with > org-reload? I've caught myself several times recently doing git > checkouts and reloading, but of course