Re: Reg Make build on LINUX

2008-06-20 Thread Johan Bezem
Sravanthi, go to Paul's website at http://make.paulandlesley.org/autodep.html, read and _understand_ what he's showing you, and implement it in your environment. HTH, Johan Bezem http://blog.bezem.de/ A, Sravanthi wrote: Smith /Team, Would you help me on this issue. Recomp

Re: Generating Prerequisites Automatically

2003-01-23 Thread Johan Bezem
ose is to generate dependency file only in case of real need, not > on every build. >... Look at http://make.paulandlesley.org/autodep.html, indicated in Paul's signature. Johan Bezem CSK Software AG ___ Bug-make mailing list [EMAIL PROTEC

Re: $(wildcard) not expanding generated files

2003-01-21 Thread Johan Bezem
"Paul D. Smith" wrote: > > %% "Johan Bezem" <[EMAIL PROTECTED]> writes: > > jb> this seems to be by design, to overcome the fact that > > jb> OBJECTS = *.o > > jb> doesn't expand the list, whereas > > jb> O

Re: $(wildcard) not expanding generated files

2003-01-21 Thread Johan Bezem
7;, 'echo' just echoes the given characters, and uses no wildcard expansion AFAIK, depending on your shell. <...> $(wildcard has not been designed for the use you want from it. Let us know what it is that you want to achieve, and we can discuss possible solutions. HTH, Johan Bezem CSK Software AG ___ Bug-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-make

Re: always echoing commands (patch)

2002-12-26 Thread Johan Bezem
an "export MY_AT=@" (using bash) in my profile, but if I set it to the empty string, all relevant commands are echoed. FWIW, Johan Bezem CSK Software AG Marty Leisner wrote: > > I find it useful to see the commands during failing builds > (it started with samba, I also used t

Re: Bug report

2002-12-19 Thread Johan Bezem
testcase that still shows the unexplainable behavior. First of all, you may notice something that never occurred to you before, possibly resolving your problem yourself, secondly, it will reduce the time we need to spend scanning for errors. We are more than willing to help, but the debugging of you

Re: Bug report

2002-12-16 Thread Johan Bezem
rsion 3.77 is 'terribly' old. Could you try again using 3.79.1 or 3.80. and see if it still fails? Maybe Paul has some knowledge about such errors being present in older versions, however, I've only got experience since 3.79. Regards, Johan Bezem CSK Software AG "Prof. Dr.

Re: Bug report

2002-12-16 Thread Johan Bezem
), as well as the exact output from make and its executed command lines. Regards, Johan Bezem CSK Software AG "Prof. Dr. Doeringer (FB Informatik)" wrote: > > Hi, there is a problem with make I cannot figure out at all. Hence I send > you the make-file causing the headaches. I am

Re: target pattern resolution problem

2002-07-08 Thread Johan Bezem
Use: vpath %.cc $(srcdir) and leave out all references to directories in the rules. See the make documentation for "vpath directive" and/or the VPATH variable. See also Paul's website at http://www.paulandlesley.org/gmake/vpath.html HTH, Johan Bezem CSK Software AG Stefa

Re: Possible bug: Intermediate file deletion using pattern rules with multiple targets

2002-04-28 Thread Johan Bezem
ght also help narrow down where to look. I all doesn't help, I'll have to dig down the code. I know it's not a major issue here, but I need consistent behavior in my makefiles, either way. Thanks again, Johan Bezem CSK Software AG Johan Bezem wrote: > > Hi, > >

Possible bug: Intermediate file deletion using pattern rules with multiple targets

2002-04-22 Thread Johan Bezem
usion of the special target name '.INTERMEDIATE' for all *.int files induces make to delete both files, however, wildcards are not supported... I couldn't find anything in the archives or the manual, either. Is this a true bug, or can someone teach me how to RTFM? Ciao, Johan Bezem CSK Software AG ___ Bug-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-make

Re: Bug with semicolon in target specific variable?

2002-04-18 Thread Johan Bezem
Semicolons have a special meaning in GNU-make. RTFM! Escaping with \; might help. Didn't try, though. Johan Bezem CSK Software AG > "Bhatt, Milan C" wrote: > > Hello, > > It seems GMAKE doesn't like having semicolons within the value of a > target specif

Re: Which is the missing separator?

2002-03-27 Thread Johan Bezem
ne as well as the make error message refer to a 'makefile' without capitalisation. HTH, Johan Bezem CSK Software AG ___ Bug-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-make

Re: make

2002-03-25 Thread Johan Bezem
Try escaping $ with \$ instead of $$. HTH, Johan Bezem CSK Software AG > Sebastian Glita wrote: > > Hi, > > I have a problem with "transporting" dollar sign through multiple > function calls. ___ Bug-make m