* harbour/include/hbclass.ch
! fixed typo: AddClsMthds() => AddClsMethod()
+ added support for executing InitClass() constructor - it's not
exact Class(y) behavior but rather sth what xHarbour does now.
It will be change in the future when we will have real class
methods and variables.
* harbour/contrib/libct/blank.prg
! fixed typo
* harbour/contrib/libct/dbftools.c
* added function list in header
* harbour/contrib/libct/screen1.c
+ added SCREENTEXT()
* harbour/contrib/libct/disk.c
- removed DELETEFILE() and FILEMOVE()
* harbour/contrib/libct/files.c
+ added DELETEFILE(), RENAMEFILE(), FILEMOVE()
* harbour/contrib/libct/ctwfunc.c
! fixed typo in parameters numbers in WFORMAT()
+ harbour/contrib/libct/charsprd.c
+ added CHARSPREAD()
+ harbour/contrib/libct/scrmark.prg
+ added SCREENMARK()
+ harbour/contrib/libct/expand.c
+ added EXPAND()
+ harbour/contrib/libct/fcopy.prg
+ added FILECOPY(), FILECOPEN(), FILECCLOSE(), FILEAPPEND(), FILECDATI()
it's modified and fixed code by Frederic J. Bell borrowed from
xHarbour
* harbour/contrib/libct/Makefile
* harbour/contrib/libct/makefile.bc
* harbour/contrib/libct/makefile.vc
* update for new files. makefile.bc will have to be modified yet
(some files were missing and I added them to file list) but I'd
like to leave it for BCC users who can test modifications
105 lines
1.2 KiB
Makefile
105 lines
1.2 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
C_SOURCES = \
|
|
addascii.c \
|
|
asciisum.c \
|
|
ascpos.c \
|
|
atadjust.c \
|
|
atnum.c \
|
|
atrepl.c \
|
|
bitnum.c \
|
|
charevod.c \
|
|
charlist.c \
|
|
charmirr.c \
|
|
charmix.c \
|
|
charone.c \
|
|
charonly.c \
|
|
charop.c \
|
|
charrepl.c \
|
|
charsort.c \
|
|
charsprd.c \
|
|
charswap.c \
|
|
color.c \
|
|
count.c \
|
|
ctc.c \
|
|
ctchksum.c \
|
|
ctcrypt.c \
|
|
ctmath.c \
|
|
ctmath2.c \
|
|
ctnet.c \
|
|
ctpad.c \
|
|
ctset.c \
|
|
ctstr.c \
|
|
ctstrfil.c \
|
|
ctwfunc.c \
|
|
ctwin.c \
|
|
cursor.c \
|
|
datetime.c \
|
|
dattime2.c \
|
|
dattime3.c \
|
|
dbftools.c \
|
|
disk.c \
|
|
expand.c \
|
|
exponent.c \
|
|
files.c \
|
|
finan.c \
|
|
ftoc.c \
|
|
justify.c \
|
|
keyset.c \
|
|
like.c \
|
|
lton.c \
|
|
maxline.c \
|
|
misc1.c \
|
|
misc2.c \
|
|
misc3.c \
|
|
num1.c \
|
|
numat.c \
|
|
numcount.c \
|
|
numline.c \
|
|
pack.c \
|
|
pos1.c \
|
|
pos2.c \
|
|
posdiff.c \
|
|
print.c \
|
|
range.c \
|
|
relation.c \
|
|
remove.c \
|
|
replace.c \
|
|
screen1.c \
|
|
screen2.c \
|
|
setlast.c \
|
|
strdiff.c \
|
|
strswap.c \
|
|
tab.c \
|
|
token1.c \
|
|
token2.c \
|
|
trig.c \
|
|
video.c \
|
|
wordrepl.c \
|
|
wordtoch.c \
|
|
|
|
PRG_SOURCES= \
|
|
blank.prg \
|
|
ct.prg \
|
|
ctmisc.prg \
|
|
cttime.prg \
|
|
fcopy.prg \
|
|
getinfo.prg \
|
|
getinput.prg \
|
|
getsecrt.prg \
|
|
keysave.prg \
|
|
keysec.prg \
|
|
keytime.prg \
|
|
numconv.prg \
|
|
screen3.prg \
|
|
scrmark.prg \
|
|
showtime.prg \
|
|
|
|
LIBNAME=ct
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|