*** empty log message ***

This commit is contained in:
Paul Tucker
1999-10-07 15:47:43 +00:00
parent 36edda5310
commit 320692a616
2 changed files with 16 additions and 13 deletions

View File

@@ -1,3 +1,8 @@
19991007-11:30 EDT Paul Tucker <ptucker@sympatico.ca>
* makefile.vc
* removed symbols.obj from compiler - I thought it needed it, but not so.
* shortened filelist for Harbour.exe to $**
19991007-17:00 GMT+2 Ryszard Glab <rglab@imid.med.pl>
*source/compiler/harbour.y

View File

@@ -219,8 +219,7 @@ DEBUG_LIB_OBJS = \
# Our default target
#
all: $(OBJ_DIR)\symbols.obj \
$(HARBOUR_EXE) \
all: $(HARBOUR_EXE) \
$(HARBOUR_LIB) \
$(TOOLS_LIB) \
$(TERMINAL_LIB) \
@@ -231,13 +230,10 @@ all: $(OBJ_DIR)\symbols.obj \
$(RUNNER_LIB) \
$(RUNNER_EXE)
$(OBJ_DIR)\symbols.obj : $(VM_DIR)\symbols.asm
masm $** $@ obj\symbols.lst obj\symbols.crf
$(PP_EXE) : \
$(PP_DIR)\stdalone\hbpp.c
@if exist obj\hbpp.obj del obj\hbpp.obj
$(CC) -TP $(CFLAGS) $(PP_DIR)\stdalone\hbpp.c -o $(BIN_DIR)\hbpp /link $(PP_LIB)
$(CC) -TP $(CFLAGS) $** -o $(BIN_DIR)\hbpp /link $(PP_LIB)
-del hbpp.obj
$(RUNNER_EXE) : \
@@ -250,6 +246,7 @@ $(RUNNER_EXE) : \
-del hbrun.obj
$(HARBOUR_EXE) : \
$(COMPILER_DIR)\harbour.c \
$(COMPILER_DIR)\harboury.c \
$(COMPILER_DIR)\harbourl.c \
$(COMPILER_DIR)\genobj32.c \
@@ -259,18 +256,13 @@ $(HARBOUR_EXE) : \
$(COMPILER_DIR)\genjava.c \
$(COMPILER_DIR)\genpas.c \
$(COMPILER_DIR)\expropt.c \
$(COMPILER_DIR)\harbour.c \
$(PP_DIR)\hbpp.c \
$(PP_DIR)\hbppint.c \
$(PP_DIR)\table.c
$(CC) $(CFLAGS) -DHARBOUR_OBJ_GENERATION $(COMPILER_DIR)\harboury.c $(COMPILER_DIR)\harbourl.c $(COMPILER_DIR)\harbour.c $(COMPILER_DIR)\genobj32.c $(COMPILER_DIR)\genc.c $(COMPILER_DIR)\genhrb.c $(COMPILER_DIR)\genrc.c $(COMPILER_DIR)\genjava.c $(COMPILER_DIR)\genpas.c $(COMPILER_DIR)\expropt.c $(PP_DIR)\hbppint.c $(PP_DIR)\hbpp.c $(PP_DIR)\table.c -o $(BIN_DIR)\harbour
@Echo : Ignore Lnk4033 warning
$(CC) $(CFLAGS) -DHARBOUR_OBJ_GENERATION $** -o $(BIN_DIR)\harbour
-del harbour.obj
-del harboury.obj
-del harbourl.obj
-del harbour.obj
-del hbppint.obj
-del hbpp.obj
-del table.obj
-del genobj32.obj
-del genc.obj
-del genhrb.obj
@@ -278,6 +270,9 @@ $(HARBOUR_EXE) : \
-del genjava.obj
-del genpas.obj
-del expropt.obj
-del hbpp.obj
-del hbppint.obj
-del table.obj
#
# Library dependencies and build rules
@@ -561,6 +556,9 @@ $(OBJ_DIR)\setkey.obj : $(RTL_DIR)\setkey.c
$(OBJ_DIR)\strings.obj : $(RTL_DIR)\strings.c
$(CC) $(CLIBFLAGS) -Fo$@ $**
$(OBJ_DIR)\symbols.obj : $(VM_DIR)\symbols.asm
masm $** $@ obj\symbols.lst obj\symbols.crf
$(RTL_DIR)\tbcolumn.c : $(RTL_DIR)\tbcolumn.prg
$(HARBOUR_EXE) $** $(HARBOURFLAGS) -o$@