Re: $@ documentation

2002-10-12 Thread Paul D. Smith
%% Henning Makholm <[EMAIL PROTECTED]> writes: Thanks Henning. hm> If your $(BINFILES) live in different directories, I dont think hm> there's any way to get around writing separate rules for each hm> directory (save for some kind of clever abuse of the new $(eval hm> ...) function in 3.

Re: $@ documentation

2002-10-12 Thread Paul D. Smith
%% "Albert D. Cahalan" <[EMAIL PROTECTED]> writes: adc> It seems make doesn't set $@ where I want it set. adc> That wasn't real obvious. I still don't see it in adc> the documentation. I could have sworn there was something there but I looked and also didn't see it. I'll add a note in the

Re: $@ documentation

2002-10-12 Thread Henning Makholm
Scripsit "Albert D. Cahalan" <[EMAIL PROTECTED]> > this didn't work > $(BINFILES) : $(notdir $@) > $(install) --mode a=rx --strip $(notdir $@) $@ > - > It seems make doesn't set $@ where I want it set. No. That's one of the things you ju

$@ documentation

2002-10-12 Thread Albert D. Cahalan
I have make 3.79.1. This stuff starts off with $(BINFILES) being a list of files to install, such as: /bin/foo /usr/bin/bar /sbin/baz this didn't work $(BINFILES) : $(notdir $@) $(install) --mode a=rx --strip $(notdir $@) $@ - It seems m