* harbour/source/rtl/gttrm/gttrm.c
* set cursor position at beginning of new line on application exit
* harbour/include/hbextern.ch
+ added missing functions (CDPs, LANGs, HSX, ...)
* harbour/utils/hbdot/Makefile
* harbour/utils/hbrun/Makefile
+ added codepage library
37 lines
382 B
Makefile
37 lines
382 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ifeq ($(HB_MAIN),)
|
|
HB_MAIN = std
|
|
endif
|
|
|
|
ROOT = ../../
|
|
|
|
PRG_SOURCES=\
|
|
hbdot.prg \
|
|
|
|
PRG_MAIN=hbdot.prg
|
|
|
|
LIBS=\
|
|
debug \
|
|
vm \
|
|
rtl \
|
|
lang \
|
|
codepage \
|
|
rdd \
|
|
rtl \
|
|
vm \
|
|
macro \
|
|
pp \
|
|
compiler \
|
|
common \
|
|
|
|
ifeq ($(findstring -DHB_PCRE_REGEX, $(C_USR)),)
|
|
ifeq ($(findstring -DHB_POSIX_REGEX, $(C_USR)),)
|
|
LIBS += hbpcre
|
|
endif
|
|
endif
|
|
|
|
include $(TOP)$(ROOT)config/bin.cf
|