%% Jim <[EMAIL PROTECTED]> writes:
j> Absolutely...
j> all: junk.test
j> $.test:%.c | thing
j>touch $@
j> junk.c thing:
j>touch $@
j> make...
j> (touches thing and junk.c to create them)
j> then after every touch of 'thing' junk.test is touched.
This is a bug in make
Paul D. Smith wrote:
%% Jim <[EMAIL PROTECTED]> writes:
j> Absolutely...
j> all: junk.test
j> $.test:%.c | thing
j> touch $@
j> junk.c thing:
j> touch $@
j> make...
j> (touches thing and junk.c to create them)
j> then after every touch of 'thing' junk.test is t
Noel Yap wrote:
Jim wrote:
I'm not really sure if this falls in the same category, but the rule
base is a pattern rule... it seems that something like
%.o:%.c | $(intermdiate_path)
intermediate_path is no longer order only, it is instead a valid rule,
and that being a directory means it's oft
Jim wrote:
I'm not really sure if this falls in the same category, but the rule
base is a pattern rule... it seems that something like
%.o:%.c | $(intermdiate_path)
intermediate_path is no longer order only, it is instead a valid rule,
and that being a directory means it's often newer then the
I'm not really sure if this falls in the same category, but the rule
base is a pattern rule... it seems that something like
%.o:%.c | $(intermdiate_path)
intermediate_path is no longer order only, it is instead a valid rule,
and that being a directory means it's often newer then the .o in certa
%% Noel Yap <[EMAIL PROTECTED]> writes:
ny> Paul D. Smith wrote:
>> %% Boris Kolpackov <[EMAIL PROTECTED]> writes:
bk> If you expect it to print
>>
bk> %r: | baz
>>
bk> then look in read.c line 537. The dumping code simply does not
bk> distinguish between normal and order-only
Paul D. Smith wrote:
%% Boris Kolpackov <[EMAIL PROTECTED]> writes:
bk> If you expect it to print
bk> %r: | baz
bk> then look in read.c line 537. The dumping code simply does not
bk> distinguish between normal and order-only prerequisites.
ITYM rule.c.
I have a fix for this already b
%% Boris Kolpackov <[EMAIL PROTECTED]> writes:
bk> ___
bk> Bug-make mailing list
bk> [EMAIL PROTECTED]
bk> http://mail.gnu.org/mailman/listinfo/bug-make
Boris, what email client do you use? It's so bizarre; it always puts
the body of your messa
Noel Yap <[EMAIL PROTECTED]> writes:
> Once this patch is installed, does "gmake -npqr | grep '%r:'" output the
> proper thing? If so, I suspect this patch will fix much of the odd
> behaviour I've seen with regards to implicit rules and order rules.
Well, it depends what is "proper thing"? Wi
Once this patch is installed, does "gmake -npqr | grep '%r:'" output the proper thing? If so, I suspect this patch will fix much of the odd behaviour I've seen with regards to implicit rules and order rules.
Thanks,
Noel
Boris Kolpackov wrote:
Good day,
The following makefile prints "baz foo ba
Good stuff; thanks Boris.
--
---
Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at:
http://www.gnu.org http://make.paulandlesley.org
"Please remain calm...I may be mad, but I am
Good day,
The following makefile prints "baz foo baz" instead of "foo foo baz".
%r: | baz
@echo $< $^ $|
bar: foo
foo:;@:
baz:;@:
In command.c in function set_file_variables $< is initialized with the
first prerequisite. While in most cases this would be a normal prerequisite
in ca
12 matches
Mail list logo