Re: Explicit, implicit rule chain doesn't work in created dirs

2002-08-27 Thread Paul D. Smith
%% <[EMAIL PROTECTED]> writes: n> if (lookup_file (p) != 0 || n> ((!dep->changed || check_lastslash) && file_exists_p (p))) I'll look at this more closely. n> Ideally it would be possible to tell make that the date on some n> targets is never important, rather than using the --o

Re: Explicit, implicit rule chain doesn't work in created dirs

2002-08-27 Thread barkalow
On Tue, 27 Aug 2002, Paul D. Smith wrote: > %% <[EMAIL PROTECTED]> writes: > > b> dir: > b> mkdir -p dir/subdir > > This rule is incorrectly written. You have informed make that you will > be creating a target "dir", but you really created a target > "dir/subdir". As a result, make doesn't

Invitacion al Hotel Tropical Lodge en Samana

2002-08-27 Thread Hotel Tropical Lodge
Esperamos que no causamos inconveniencia.Esto es el unico mensaje que reciba de nosotros! Nosotros somos Jean-Philippe y Brigitte Merand propietarios del Hotel Tropical Lodge en Samana en la Republica Dominicana y nos gustaria de ser visitado por usted,sus amigos o clie

Re: Explicit, implicit rule chain doesn't work in created dirs

2002-08-27 Thread Paul D. Smith
%% <[EMAIL PROTECTED]> writes: b> dir: b>mkdir -p dir/subdir This rule is incorrectly written. You have informed make that you will be creating a target "dir", but you really created a target "dir/subdir". As a result, make doesn't know anything about "dir/subdir", it only knows about

Explicit, implicit rule chain doesn't work in created dirs

2002-08-27 Thread barkalow
I found this with make 3.78.1 (from redhat 6.2); it is the same in 3.79.1 Non-working Makefile: -- dir: mkdir -p dir/subdir dir/subdir/file.b: dir touch dir/subdir/file.b dir/subdir/%.a: dir/subdir/%.b cp $< $@ all: dir/subdir/file.a -- if dir/subdir doesn't ex

Re: Please help with syntax for target specific variable

2002-08-27 Thread Paul D. Smith
%% "Jai Maraj" <[EMAIL PROTECTED]> writes: jm> I'm having trouble using a 'target specific variable' . jm> I haven't used this feature before and am sure what I'm doing wrong. jm> Makefile content is jm> jaitest: MYVAR=friend jm> @echo Hello $(MYVAR) This is not a target-spec

Please help with syntax for target specific variable

2002-08-27 Thread Jai Maraj
Hi Support, Please help me out here. I'm having trouble using a 'target specific variable' . I haven't used this feature before and am sure what I'm doing wrong. Makefile content is jaitest: MYVAR=friend @echo Hello $(MYVAR) Command make -f jaimake.mk jaitest fails with the following e