All;
With
gmake, I can make this assignment with intrinsic functions:
TARGETS = $(addsuffix .vof,$(basename ${shell ls gun??/*.pvif}))
but it doesn't work with Sun
make/dmake.
I can write this bash script:
ls gun??/*.pvif | sed 's|pvif|vof|' --
to yield the desired results, but don't know how to assign it to "*TARGETS*". (Note: I tried encapsulating in backquotes, but that didn't work)
How should I make my assignment?
...Dan