diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 65f9b2f7ec..bd916054d4 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-11-09 01:17 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/src/Makefile + % small optimization in concurrent build (-j GNU make switch) dependency + 2010-11-08 23:37 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbcompdf.h * harbour/include/hbexprb.c diff --git a/harbour/src/Makefile b/harbour/src/Makefile index 90686b7775..177d5913be 100644 --- a/harbour/src/Makefile +++ b/harbour/src/Makefile @@ -12,8 +12,8 @@ ifeq ($(HB_BUILD_PARTS),compiler) common \ nortl \ pp{common,nortl} \ - compiler{pp} \ - main{compiler} \ + compiler \ + main{pp,compiler} \ else @@ -76,10 +76,12 @@ else ifeq ($(HB_BUILD_PARTS),lib) HB_COMP_DIR := - HB_COMP_REF := {3rd} + HB_COMP_REF := + HB_COMP_RF2 := {pp} else - HB_COMP_DIR := main{compiler} - HB_COMP_REF := {3rd,main} + HB_COMP_DIR := main{pp,compiler} + HB_COMP_REF := {main} + HB_COMP_RF2 := {main} endif DIRS := \ @@ -87,9 +89,9 @@ else common \ nortl \ pp{common,nortl} \ - compiler{pp} \ + compiler \ $(HB_COMP_DIR) \ - vm$(HB_COMP_REF) \ + vm$(HB_COMP_RF2) \ rtl$(HB_COMP_REF) \ macro \ codepage \