From 62ed163f3c82b1f6b7bcbc7be3265a3c1abe399c Mon Sep 17 00:00:00 2001 From: Paul Tucker Date: Fri, 30 Jul 1999 18:12:45 +0000 Subject: [PATCH] *** empty log message *** --- harbour/ChangeLog | 5 +++++ harbour/makefile.vc | 14 ++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f94abd4439..fe2b48918f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +19990730-14:00 EDT Paul Tucker + * makefile.vc (reported by Matteo Baccan) + + source/tools/fileread.prg + + source/rtl/alert.prg + 19990730-19:51 CET Victor Szel ! source/rtl/strings.c/HB_STRTRAN() Fixed so that it throws an error instead of diff --git a/harbour/makefile.vc b/harbour/makefile.vc index b1a2c65a81..a6cb20d357 100644 --- a/harbour/makefile.vc +++ b/harbour/makefile.vc @@ -50,6 +50,7 @@ HARBOURFLAGS=-iinclude # HARBOUR_LIB_OBJS = \ + $(OBJ_DIR)\alert.obj \ $(OBJ_DIR)\arrays.obj \ $(OBJ_DIR)\asort.obj \ $(OBJ_DIR)\classes.obj \ @@ -101,6 +102,7 @@ TOOLS_LIB_OBJS = \ $(OBJ_DIR)\dates2.obj \ $(OBJ_DIR)\datesx.obj \ $(OBJ_DIR)\debug.obj \ + $(OBJ_DIR)\fileread.obj \ $(OBJ_DIR)\hb_f.obj \ $(OBJ_DIR)\io.obj \ $(OBJ_DIR)\mathx.obj \ @@ -202,6 +204,12 @@ $(RTL_DIR)\achoice.c : $(RTL_DIR)\achoice.prg $(OBJ_DIR)\achoice.obj : $(RTL_DIR)\achoice.c $(CC) $(CLIBFLAGS) -Fo$@ $** +$(RTL_DIR)\alert.c : $(RTL_DIR)\alert.prg + $(HARBOUR_EXE) $(HARBOURFLAGS) -o$(**D) $** -n + +$(OBJ_DIR)\alert.obj : $(RTL_DIR)\alert.c + $(CC) $(CLIBFLAGS) -Fo$@ $** + $(OBJ_DIR)\arrays.obj : $(RTL_DIR)\arrays.c $(CC) $(CLIBFLAGS) -Fo$@ $** @@ -369,6 +377,12 @@ $(OBJ_DIR)\datesx.obj : $(TOOLS_DIR)\datesx.c $(OBJ_DIR)\debug.obj : $(TOOLS_DIR)\debug.c $(CC) $(CLIBFLAGS) -Fo$@ $** +$(TOOLS_DIR)\fileread.c : $(TOOLS_DIR)\fileread.prg + $(HARBOUR_EXE) $(HARBOURFLAGS) -o$(**D) $** + +$(OBJ_DIR)\fileread.obj : $(TOOLS_DIR)\fileread.c + $(CC) $(CLIBFLAGS) -Fo$@ $** + #$(OBJ_DIR)\genobj.obj : $(TOOLS_DIR)\genobj.c # $(CC) $(CLIBFLAGS) -Fo$@ $**