Re: Can I compile source in .xrd format without CodeWarrior?

2005-08-18 Thread Henk Jonas

[EMAIL PROTECTED] wrote:


Hi Henk Jonas,

Thank you for your reply.

I'm trying write a makefile to compile a sample code which is originally for 
CodeWarrior. I have PODS with palmrc. I understand taht palmrc can generate 
.trc, but I don't know how can I add the .trc into the object code .prc?



It wasn't my post mentioning the PalmRc.exe. I don't see a good way to 
convert the .xrd into a .rcp file on a first look. If you want to do 
something great for the comunity, you could write such a converter. 
Shouldn't be that difficult using 3th-party xml-parser and the pilrc docs.


Regards
Henk

--
-
  Henk Jonas[EMAIL PROTECTED]
  Palm OS ® certified developer

  Please contact me, if you need an off-site contract worker.
-

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


Re: Can I compile source in .xrd format without CodeWarrior?

2005-08-17 Thread Henk Jonas

[EMAIL PROTECTED] wrote:


I don't have CodeWarrior. I'm trying to figure out how to use makefile to 
compile the code with it's source in .xrd format? Please help.



Isn't .xrd the resource file format from PODS?

--
-
  Henk Jonas[EMAIL PROTECTED]
  Palm OS ® certified developer

  Please contact me, if you need an off-site contract worker.
-

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


RE: Can I compile source in .xrd format without CodeWarrior?

2005-08-17 Thread Eric Cloninger
It is.  You can get the resource compiler, PalmRC, by downloading and
installing PODS.  After that, you can just pull out PalmRC.exe from the
installation and run it manually.

You can use PalmRC with CodeWarrior by putting your command lines in a batch
file and have the batch file generate a .TRC (Temporary RC) file extension.
Then, include that .trc file in your codewarrior 9.x project.  It has to be
9.x and you have to be using the PalmOS 68K linker, not the MacOS 68K
linker. 

I wrote a longer thread on how to do this somewhere in the archives.  There
is also a CW plugin of PalmRC that is available through PS's pay us and
we'll give you access to all our stuff we don't know what to do with
program (aka Inside Track).

 -Original Message-
 From: Henk Jonas [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, August 17, 2005 2:57 PM
 To: Palm Developer Forum
 Subject: Re: Can I compile source in .xrd format without CodeWarrior?
 
 
 [EMAIL PROTECTED] wrote:
 
  I don't have CodeWarrior. I'm trying to figure out how to 
 use makefile 
  to compile the code with it's source in .xrd format? Please help.
  
 
 Isn't .xrd the resource file format from PODS?
 
 -- 
 --
 ---
Henk Jonas
 [EMAIL PROTECTED]
Palm OS R certified developer
 
Please contact me, if you need an off-site contract worker.
 --
 ---
 
 -- 
 For information on using the PalmSource Developer Forums, or 
 to unsubscribe, please see http://www.palmos.com/dev/support/forums/
 
 
 


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


RE: Can I compile source in .xrd format without CodeWarrior?

2005-08-17 Thread jweng
Hi Henk Jonas,

Thank you for your reply.

I'm trying write a makefile to compile a sample code which is originally for 
CodeWarrior. I have PODS with palmrc. My makefile looks like following:

all : WatchMain.prc clean

WatchMain.prc : code.WatchMain.grc tver0001.bin 
build-prc WatchMain.prc Watch VMFC *.WatchMain.grc *.bin  
ls -l WatchMain.prc

tver0001.bin : Src/WatchF.rcp Rsc/Watch/AppIcon_Large-1.bmp 
Rsc/Watch/AppIcon_Small-1.bmp 
pilrc Src/WatchF.rcpWatch.trc

code.WatchMain.grc : Src/WatchMain.c Src/WatchAbacus.h Src/WatchFossil.h 
Rsc/WatchRsc.h
m68k-palmos-gcc  -g Src/WatchMain.c  -o WatchMain1
m68k-palmos-obj-res WatchMain

Watch.trc: Rsc/Watch.xrd   
palmrc Rsc/Watch.xrd -o Watch.trc

clean :
rm WatchMain *.WatchMain.grc *.bin

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


RE: Can I compile source in .xrd format without CodeWarrior?

2005-08-17 Thread jweng
Hi Henk Jonas,

Thank you for your reply.

I'm trying write a makefile to compile a sample code which is originally for 
CodeWarrior. I have PODS with palmrc. I understand taht palmrc can generate 
.trc, but I don't know how can I add the .trc into the object code .prc?
-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/