* source/rtl/tbcolumn.prg
! Strict C5.2e compatible behaviour made the default.
* source/rtl/inkey.c
+ Added handling of arrays of numbers in HB_KEYPUT().
(this was copied from __KEYBOARD()'s extended section)
+ Added handling of string parameter in HB_KEYPUT().
(this way we don't really need the hidden extensions
in __KEYBOARD() anymore. Also notice that __KEYBOARD()
doesn't clear the keyboard buffer when numeric or
array is passed, which is not consistent with the
Clipper compatible behaviour when strings are passed.)
* common.mak
* include/hbcompdf.h
* source/compiler/hbmain.c
* source/compiler/cmdcheck.c
* source/compiler/hbcomp.c
* source/compiler/harbour.l
* source/compiler/Makefile
* source/compiler/ppcomp.c
* source/compiler/hbusage.c
- source/compiler/genjava.c
- source/compiler/gencli.c
- Removed two non-working (experimental) output types:
Java, CLI
! Prefixed LANG_* enums with HB_
53 lines
685 B
Makefile
53 lines
685 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
#LEX_FLAGS = -Phb_comp -C
|
|
#LEX_SOURCE=harbour.l
|
|
#LEX_HEADERS=\
|
|
# hbsetup.h \
|
|
# hberrors.h \
|
|
# hbdefs.h
|
|
|
|
#YACC_FLAGS = -p hb_comp
|
|
YACC_SOURCE=harbour.y
|
|
YACC_HEADERS=\
|
|
hbcomp.h \
|
|
hbcompdf.h \
|
|
hbsetup.h \
|
|
hbpcode.h \
|
|
hbdefs.h \
|
|
hberrors.h \
|
|
hbpp.h
|
|
|
|
C_SOURCES=\
|
|
cmdcheck.c \
|
|
genc.c \
|
|
gencc.c \
|
|
gencobj.c \
|
|
genhrb.c \
|
|
genobj32.c \
|
|
hbcmplib.c \
|
|
hbcomp.c \
|
|
hbdbginf.c \
|
|
hbfunchk.c \
|
|
hbgenerr.c \
|
|
hbpcode.c \
|
|
hbfix.c \
|
|
hbdead.c \
|
|
hblbl.c \
|
|
hbopt.c \
|
|
hbstripl.c \
|
|
hbusage.c \
|
|
hbident.c \
|
|
ppcomp.c \
|
|
expropta.c \
|
|
exproptb.c \
|
|
complex.c \
|
|
hbmain.c \
|
|
|
|
LIBNAME=compiler
|
|
include $(TOP)$(ROOT)config/lib.cf
|