FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Borland make sample
Posts: 1195
Joined: Mon Oct 17, 2005 05:41 AM
Borland make sample
Posted: Tue Aug 07, 2007 07:21 PM

Hi,

Is it correct that if I use the make-example in the 'makes' directory, that all the PRG-files are being compiled. Even if there no modification in the prg-files. If I change the path of the OBJ to .\ instead of .\obj (all the .C and .OBJ will be compiled in the .PRG direcory) only the changed files will be recompiled. So than it works fine.

Regards,

Marc

Regards,

Marc



FWH32+xHarbour | FWH64+Harbour | BCC | DBF | ADO+MySQL | ADO+MariaDB | ADO+SQLite
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Borland make sample
Posted: Tue Aug 07, 2007 07:57 PM

Marc,

> all the PRG-files are being compiled

No, they should not be recompiled. It looks as there is a bug in the makefile

We are going to review it, thanks

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1096
Joined: Fri Oct 28, 2005 02:27 AM
Borland make sample
Posted: Thu Aug 09, 2007 05:51 PM

I noticed it also. Could you post the solution here later Antonio? Thanks

FWH 11.08/FWH 19.12

BCC5.82/BCC7.3

xHarbour/Harbour
Posts: 1195
Joined: Mon Oct 17, 2005 05:41 AM
Borland make sample
Posted: Tue Sep 11, 2007 04:23 PM

Antonio,

Did you found a solution for this?

Regards,
Marc

Regards,

Marc



FWH32+xHarbour | FWH64+Harbour | BCC | DBF | ADO+MySQL | ADO+MariaDB | ADO+SQLite
Posts: 1195
Joined: Mon Oct 17, 2005 05:41 AM
Borland make sample
Posted: Tue Sep 25, 2007 07:51 PM
Hi,

I found the solution.

I don't know why, but if you change the order from
#change these paths as needed
.path.PRG = .\
.path.OBJ = .\obj
.path.CH  = $(FWDIR)\include;$(HBDIR)\include
.path.C   = .\
.path.rc  = .\


to
#change these paths as needed
.path.OBJ = .\obj
.path.PRG = .\
.path.CH  = $(FWDIR)\include;$(HBDIR)\include
.path.C   = .\
.path.rc  = .\


then it's working!!!

Regards,
Marc
Regards,

Marc



FWH32+xHarbour | FWH64+Harbour | BCC | DBF | ADO+MySQL | ADO+MariaDB | ADO+SQLite
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Borland make sample
Posted: Tue Sep 25, 2007 07:59 PM

Marc,

Thanks so much for sharing it :-)

We had it on our to-do list :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion