VPATH as a pattern variable

2007-04-05 Thread Martin DAnjou
Hello, I do not understand why I get "no rule to make target" with this makefile: .SECONDEXPANSION: comp_pproc_src=d_f.v d_%.v: VPATH=src_dir d_%.v: %.v touch $@ echo Made $@ comp_%: $$(comp_pproc_$$*) echo Done all: comp_src The file called src_dir/f.v does exist. This is make 3.8

Re: VPATH as a pattern variable

2007-04-05 Thread Paul Smith
On Thu, 2007-04-05 at 13:12 -0400, Martin DAnjou wrote: > I do not understand why I get "no rule to make target" with this > makefile: > d_%.v: VPATH=src_dir VPATH settings in target-specific variables are not currently valid. I believe there was an enhancement request about this at one point, b