* harbour/include/hbcomp.h
+ added hb_compPCodeSize() and hb_compStrongType() declarations
* harbour/include/hbpp.h
* formatting
* harbour/source/compiler/Makefile
+ harbour/source/compiler/hbstrong.c
* harbour/source/compiler/hbpcode.c
* moved strong typing code to separate file
* harbour/source/compiler/hbpcode.c
+ added hb_compPCodeSize() function
+ added support for automatic size checking of variable size PCODEs
in hb_compPCodeEval()
* harbour/source/compiler/gencc.c
* added escaping of '?' character in generated strings to
avoid possible conflicts with trigraph sequences which
are part of ANSI C standard
* force .0 at the end of double numbers to avoid possible range
conflicts in generated .c files
* removed unnecessary HB_SYMBOL_UNUSED()
* harbour/source/compiler/harbour.l
* harbour/source/compiler/harbour.y
* harbour/source/macro/macro.l
* harbour/source/macro/macro.y
* added #define realloc hb_xrealloc
* harbour/source/compiler/hbdead.c
* harbour/source/compiler/hbfix.c
* harbour/source/compiler/hblbl.c
* harbour/source/compiler/hbstripl.c
* use hb_compPCodeSize() function
* removed not longer necessary functions for checking the real size
of variable size PCODEs
* harbour/source/vm/hvm.c
* fixed RT error number in hb_vmAddInt() for negative values to be
Clipper compatible
70 lines
805 B
Makefile
70 lines
805 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
ifeq ($(HB_LEX),SIMPLEX)
|
|
|
|
YACC_SOURCE=harbour.sly
|
|
|
|
else
|
|
|
|
YACC_SOURCE=harbour.y
|
|
|
|
endif
|
|
|
|
YACC_HEADERS=\
|
|
hbcomp.h \
|
|
hbsetup.h \
|
|
hbpcode.h \
|
|
hbdefs.h \
|
|
hberrors.h \
|
|
hbpp.h
|
|
|
|
ifeq ($(HB_LEX),SIMPLEX)
|
|
|
|
C_EXTRA=hbslex.c
|
|
|
|
else
|
|
|
|
LEX_SOURCE=harbour.l
|
|
|
|
LEX_HEADERS=\
|
|
hbsetup.h \
|
|
hberrors.h \
|
|
hbdefs.h
|
|
endif
|
|
|
|
C_SOURCES=\
|
|
cmdcheck.c \
|
|
genc.c \
|
|
gencc.c \
|
|
gencobj.c \
|
|
genhrb.c \
|
|
genjava.c \
|
|
genobj32.c \
|
|
gencli.c \
|
|
hbfunchk.c \
|
|
hbgenerr.c \
|
|
hbpcode.c \
|
|
hbfix.c \
|
|
hbdead.c \
|
|
hblbl.c \
|
|
hbstripl.c \
|
|
hbstrong.c \
|
|
hbusage.c \
|
|
hbident.c \
|
|
expropta.c \
|
|
exproptb.c \
|
|
exproptc.c \
|
|
$(C_EXTRA)
|
|
|
|
C_MAIN=harbour.c
|
|
|
|
LIBS=\
|
|
pp \
|
|
common \
|
|
|
|
include $(TOP)$(ROOT)config/bin.cf
|