[bug #23273] Please include xkcd easteregg

2008-05-22 Thread David Fang
Follow-up Comment #2, bug #23273 (project make): No need to patch make itself, just include something like the following in the desired Makefiles: sandwich: @if test `whoami` = "root" ; then $(ECHO) "Okay." ; else $(ECHO) "What? Make it yourself." ;

[bug #17873] .NOTPARALLEL enhancements

2008-04-03 Thread David Fang
Follow-up Comment #14, bug #17873 (project make): Because even the most correct dependencies fail to account for programs/scripts that use conflicting temporary/auxiliary files. For example, latex and pdflatex both use the same basename.aux files given the same source file (and with different co

Re: [bug #17873] .NOTPARALLEL enhancements

2006-09-28 Thread David Fang
> > In my experience, I frequently build pdf and ps documents from the same > > latex sources, via latex and pdflatex. Unfortunately, the intermediate > > auxiliary files they produce are not compatible with each other (latex vs. > > pdflatex), thus, I use .NOTPARALLEL: foo.pdf foo.dvi, and use a l

Re: [bug #17873] .NOTPARALLEL enhancements

2006-09-28 Thread David Fang
> Follow-up Comment #3, bug #17873 (project make): > > Haven't been paying a lot of attention, but when is such a lame thing nas > .NOTPARALLEL needed? Why aren't people just writing proper dependencies so > that parallel/serial is irrelevant? Example: In my experience, I frequently build pdf and