[EMAIL PROTECTED] wrote:
> Trying to change current directory is
> not working (directory is not changed by MAKE),
There's plenty of examples of this sort of thing in the GNU make
documentation. I'm guessing you're trying to do something like
code0000.blah.grc: blah
cd objdir
obj-res blah
which doesn't work because they're two separate commands.
code0000.blah.grc: blah
cd objdir && obj-res blah
on the other hand works (there's heaps of this sort of thing in the
prc-tools makefiles).
> and trying to specify the
> directory together with the filename does not work, because it seems that
> obj-res creates its output file-name using the whole filename passed to it by
> make.
True. Because there's no compatibility problem (this old behaviour was
never useful), I've made obj-res strip off any directories and write to
its current directory, like all the other tools. Because I think obj-res
is a bad design and should be phased out, I wasn't really planning to do
this -- but there's no need to keep the useless behaviour even if the
tool isn't often used. :-)
John
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palm.com/devzone/mailinglists.html