James Zatorski <[EMAIL PROTECTED]> wrote:
> $(PRC): bin.stamp $(APP) $(DEF)
>        $(BUILDPRC) $(DEF) $(APP)      # [Your mistake is here]
[...]
> bin.stamp: $(RCP) $(APP).bmp smallicon.bmp
>        $(PILRC) $(RCP) $(BINDIR)
>        touch bin.stamp

Look carefully at your makefile.

This was nothing to do with 32K limits or multiple code resources; it's
just that you made a mistake while changing your makefile.  This part of
your makefile would become clearer if you joined the 21st century and
used PilRC's -ro flag:

        $(PRC): $(APP) $(DEF) $(APP).ro
                build-prc $(DEF) $(APP) $(APP).ro

        $(APP).ro: $(APP).rcp $(APP).bmp smallicon.bmp
                $(PILRC) -ro $(APP).rcp

It might look even clearer if you got rid of even more make variables,
but I digress... :-)

    John

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to