From ff9df3b59170dc648a76762e918d09e3e4bde1b8 Mon Sep 17 00:00:00 2001 From: "Gonzalo A. Diethelm" Date: Wed, 5 May 1999 23:20:52 +0000 Subject: [PATCH] ChangeLogTag:Wed May 05 18:28:28 1999 Gonzalo A. Diethelm --- harbour/ChangeLog | 8 ++++++++ harbour/makefile.b16 | 4 ++++ harbour/makefile.b32 | 4 ++++ 3 files changed, 16 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a8a9f6921f..351f5de3b6 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,11 @@ +Wed May 05 18:28:28 1999 Gonzalo A. Diethelm + + * makefile.b16: + * makefile.b32: + Added explicit rules to compile harbour.o from harbour.c. + Don' know why these were necessary, but it seems people had + problems without them. + Wed May 05 16:29:19 1999 Gonzalo A. Diethelm * include/pcode.h: diff --git a/harbour/makefile.b16 b/harbour/makefile.b16 index 84bc600abb..64ebbcf9f0 100644 --- a/harbour/makefile.b16 +++ b/harbour/makefile.b16 @@ -71,3 +71,7 @@ y_tab.c : harbour.y lexyy.c : harbour.l flex -i -8 -osource\compiler\lexyy.c source\compiler\harbour.l + +harbour.obj : harbour.c + bcc -c -ml -O2 -I.\include -osource\compiler\harbour.obj \ + source\compiler\harbour.c diff --git a/harbour/makefile.b32 b/harbour/makefile.b32 index 68f775fab3..acafd49583 100644 --- a/harbour/makefile.b32 +++ b/harbour/makefile.b32 @@ -71,3 +71,7 @@ y_tab.c : harbour.y lexyy.c : harbour.l flex -i -8 -osource\compiler\lexyy.c source\compiler\harbour.l + +harbour.obj : harbour.c + bcc32 -c -O2 -I.\include -osource\compiler\harbour.obj \ + source\compiler\harbour.c