* harbour/include/dbinfo.ch
* harbour/include/hbrdddbf.h
* harbour/src/rdd/dbf1.c
* harbour/src/rdd/dbfntx/dbfntx1.c
* harbour/src/rdd/dbfnsx/dbfnsx1.c
* renamed DB_DBFLOCK_XHB64 => DB_DBFLOCK_HB64
* harbour/contrib/hbwin/win_tprn.prg
* updated some comments and formatting
* harbour/contrib/xhb/Makefile
+ harbour/contrib/xhb/xhw32prn.prg
+ added WIN32PRN class, it inherits from WIN_PRN class hiding some
differences between Harbour and xHarbour in paper size setting and
separated horizontal and vertical alignment setting
96 lines
1.4 KiB
Makefile
96 lines
1.4 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
LIBNAME := xhb
|
|
|
|
C_SOURCES := \
|
|
bkgtsks.c \
|
|
cstructc.c \
|
|
datesxhb.c \
|
|
dbf2txt.c \
|
|
dbgfxc.c \
|
|
filestat.c \
|
|
fparse.c \
|
|
freadlin.c \
|
|
hbcomprs.c \
|
|
hbcrypt.c \
|
|
hboutdbg.c \
|
|
hbserv.c \
|
|
hbsyslog.c \
|
|
hbxml.c \
|
|
txtline.c \
|
|
xhbarr.c \
|
|
xhbat.c \
|
|
xhbcopyf.c \
|
|
xhbenum.c \
|
|
xhberrc.c \
|
|
xhbfunc.c \
|
|
xhbis.c \
|
|
xhbmsgs.c \
|
|
xhbqself.c \
|
|
xhbsave.c \
|
|
xhbscr.c \
|
|
xhbtrim.c \
|
|
xhbwith.c \
|
|
xstrdel.c \
|
|
|
|
C_HEADERS := \
|
|
hbcompat.h \
|
|
xhb.h \
|
|
|
|
PRG_SOURCES := \
|
|
arrayblk.prg \
|
|
cstruct.prg \
|
|
dbgfx.prg \
|
|
decode.prg \
|
|
dirrec.prg \
|
|
dumpvar.prg \
|
|
hblog.prg \
|
|
hblognet.prg \
|
|
hbstruct.prg \
|
|
regexrpl.prg \
|
|
sprintf.prg \
|
|
stream.prg \
|
|
traceprg.prg \
|
|
trpc.prg \
|
|
trpccli.prg \
|
|
ttable.prg \
|
|
txml.prg \
|
|
xcstr.prg \
|
|
xdbmodst.prg \
|
|
xhbcomp.prg \
|
|
xhberr.prg \
|
|
xhbmt.prg \
|
|
xhbver.prg \
|
|
xthrow.prg \
|
|
xhw32prn.prg \
|
|
\
|
|
hjwindow.prg \
|
|
hterrsys.prg \
|
|
htjlist.prg \
|
|
htmutil.prg \
|
|
tcgi.prg \
|
|
tedit.prg \
|
|
tfile.prg \
|
|
tframe.prg \
|
|
thtm.prg \
|
|
|
|
PRG_HEADERS := \
|
|
hbcompat.ch \
|
|
xhb.ch \
|
|
|
|
ifneq ($(HB_HAS_ZLIB),)
|
|
HB_CFLAGS += -DHB_HAS_ZLIB $(foreach d,$(HB_HAS_ZLIB),-I$(d))
|
|
|
|
include $(TOP)$(ROOT)config/header.mk
|
|
include $(TOP)$(ROOT)config/lib.mk
|
|
else
|
|
HB_SKIP_REASON := $(_DET_RES_TEXT)
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|