From 7182a622a12e9931e43aa4774ca179373a5fe06a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 6 Nov 2008 08:35:41 +0000 Subject: [PATCH] 2008-11-06 09:35 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * common.mak ! Fixed mistakes in previous commit. + Added NOTE about requirement that harboury stays at the top of the obj list. --- harbour/ChangeLog | 6 ++++++ harbour/common.mak | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 094c43dd0e..2f7e4361a8 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,12 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-11-06 09:35 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * common.mak + ! Fixed mistakes in previous commit. + + Added NOTE about requirement that harboury stays at the top of + the obj list. + 2008-11-06 09:07 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * common.mak * source/vm/Makefile diff --git a/harbour/common.mak b/harbour/common.mak index 644e616040..ce88fd3d6e 100644 --- a/harbour/common.mak +++ b/harbour/common.mak @@ -375,13 +375,18 @@ PP_LIB_OBJS = \ #********************************************************** +# NOTE: harboury must stay at the top of the list. COMPILER_LIB_OBJS = \ $(OBJ_DIR)\hbmain$(OBJEXT) \ + $(OBJ_DIR)\harboury$(OBJEXT) \ $(OBJ_DIR)\cmdcheck$(OBJEXT) \ $(OBJ_DIR)\complex$(OBJEXT) \ $(OBJ_DIR)\expropta$(OBJEXT) \ $(OBJ_DIR)\exproptb$(OBJEXT) \ - $(OBJ_DIR)\harboury$(OBJEXT) \ + $(OBJ_DIR)\genc$(OBJEXT) \ + $(OBJ_DIR)\gencc$(OBJEXT) \ + $(OBJ_DIR)\gencobj$(OBJEXT) \ + $(OBJ_DIR)\genhrb$(OBJEXT) \ $(OBJ_DIR)\hbcomp$(OBJEXT) \ $(OBJ_DIR)\hbcmplib$(OBJEXT) \ $(OBJ_DIR)\hbdbginf$(OBJEXT) \