Compiling multi-module package with Clipper

Issues and Discussions related to Harbour

Moderator: Rathinagiri

User avatar
serge_girard
Posts: 3161
Joined: Sun Nov 25, 2012 2:44 pm
DBs Used: 1 MySQL - MariaDB
2 DBF
Location: Belgium
Contact:

Re: Compiling multi-module package with Clipper

Post by serge_girard »

Esgici,

You can try to make ONE big PRG file containing all PRG's. Maybe an option?

Serge
There's nothing you can do that can't be done...
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: Compiling multi-module package with Clipper

Post by esgici »

serge_girard wrote: You can try to make ONE big PRG file containing all PRG's. Maybe an option?
Definitely yes :arrow:

But I want left as a "not surrender" ;)

Thanks to help and suggestion :)

TIA
Viva INTERNATIONAL HMG :D
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: Compiling multi-module package with Clipper

Post by esgici »

Those who are interested and curious :

Finally, I succeed :D

May be multiple way; the way worked for me is :

.bat file for compile :

Code: Select all

SET PATH=<PathOfClipper\BIN> ; %PATH%
SET LIB=<PathOfClipper\LIB>
SET INCLUDE=<PathOfClipper\INCLUDE>
SET RTLINKCMD=/POSI /VE:2
RMAKE /B <nameOf.RMK file>
IF NOT ERRORLEVEL 1 RTLINK @<nameOfLNKfile>
.RMK file :

Code: Select all

 .prg.obj:
    Clipper $*
prog01.OBJ:  prog01.PRG
prog01.OBJ:  prog02.PRG
prog03.OBJ:  prog03.PRG
...
prog-n.obj: prog-n.prg
.LNK file :

Code: Select all

prog01 prog02 prog03 prog04 +
prog-n
I hope will be useful for somebody.

TIA
Viva INTERNATIONAL HMG :D
User avatar
Agil Abdullah
Posts: 204
Joined: Mon Aug 25, 2014 11:57 am
Location: Jakarta, Indonesia
Contact:

Re: Compiling multi-module package with Clipper

Post by Agil Abdullah »

Esgici wrote:
Those who are interested and curious :

Finally, I succeed
BRAVO & SALUTE to Mr.Bicahi Esgici....!!!

Rebuilding soft-apps from old system with old tool is very tough challange, coz it has been almost completely forgotten by practicioners ( being write-off, Accountant say) :) .

This Topic could be a very good reference [in case of encountering similiar problem] to many, to whom it may concern.

Cheers & "Salam Hangat" From Jakarta
Agil Abdullah Albatati (just call me Agil)
Programmer Never Surrender
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: Compiling multi-module package with Clipper

Post by esgici »

Agil Abdullah wrote:
Esgici wrote:
Those who are interested and curious :

Finally, I succeed
BRAVO & SALUTE to Mr.Bicahi Esgici....!!!

Rebuilding soft-apps from old system with old tool is very tough challange, coz it has been almost completely forgotten by practicioners ( being write-off, Accountant say) :) .

This Topic could be a very good reference [in case of encountering similiar problem] to many, to whom it may concern.

Cheers & "Salam Hangat" From Jakarta
Thanks brother :)

By the way, today I learned meaning of "coz" your are using frequently :P

From internet slang dictionary:

B/C : Because
BCOS : Because
CAUSE : Because
COS : Because
CUZ : Because
I hope will be useful for somebody.
;)

Salam Hangat
Viva INTERNATIONAL HMG :D
Post Reply