I am using RMAKE to compile my FWH/xHarbour programs. The follwing
is the contents of .RMK file
// defining some preprocessor directives for bcc32
Def="__HARBOUR__;HB_FM_STATISTICS_OFF"
makepath[.prg]="c:\fwh\Application"
makepath[.c]="c:\fwh\Application"
.prg.c:
c:\xharbour\bin\harbour /n /w /i;c:\Fwh\include;c:\fwh\Application\include > prg.log
.c.obj:
c:\bcc55\bin\bcc32 -D$(Def) -O2 -c -Ic:\xharbour\include;c:\fwh\include $< >> c.log
prg1.c : prg1.prg
prg1.obj : prg1.c
prg2.c : prg2.prg
prg2.obj : prgc.c
..
..
It is working OK in Win98. When I try to compile in XP environment
RMAKE is generating an error and the programs are not compiling.
I am calling this .RMK file from a batchfile using CALL PROG.RMK.
Can anybody guide me to come out of this problem.
- Ramesh Babu P