* include/Makefile
- include/hbtest.ch
* src/rtl/Makefile
- src/rtl/hbtest.prg
* utils/hbmk2/hbmk2.prg
- deleted hbtest from core.
* contrib/hbct/tests/test.prg
* contrib/hbgt/tests/test.prg
* contrib/hbmisc/tests/tsstrfmt.prg
* modified regression tests to use hbtest contrib
instead of hbtest functionality in core RTL
; Thanks to Mindaugas and Przemek, now the contrib
tests will require users to manually add 'hbtest.hbc'
to their hbmk2 cmdline in case someone would like
to build exes from them. Which means that fewer
people will bother to build and run them. They still
run simply using 'hbrun <name>.prg' as scripts.
153 lines
2.2 KiB
Makefile
153 lines
2.2 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../
|
|
|
|
C_HEADERS := \
|
|
error.api \
|
|
extend.api \
|
|
filesys.api \
|
|
fm.api \
|
|
gt.api \
|
|
hbundoc.api \
|
|
item.api \
|
|
rdd.api \
|
|
vm.api \
|
|
\
|
|
clipdefs.h \
|
|
extend.h \
|
|
hbapi.h \
|
|
hbapicdp.h \
|
|
hbapicls.h \
|
|
hbapicom.h \
|
|
hbapidbg.h \
|
|
hbapierr.h \
|
|
hbapifs.h \
|
|
hbapigt.h \
|
|
hbapiitm.h \
|
|
hbapilng.h \
|
|
hbapirdd.h \
|
|
hbapistr.h \
|
|
hbassert.h \
|
|
hbatomic.h \
|
|
hbbfish.h \
|
|
hbfloat.h \
|
|
hbcdpreg.h \
|
|
hbchksum.h \
|
|
hbcomp.h \
|
|
hbcompdf.h \
|
|
hbdate.h \
|
|
hbdbf.h \
|
|
hbdbferr.h \
|
|
hbdbsort.h \
|
|
hbdefs.h \
|
|
hberrors.h \
|
|
hbexprop.h \
|
|
hbgtcore.h \
|
|
hbgtreg.h \
|
|
hbhash.h \
|
|
hbiniseg.h \
|
|
hbinit.h \
|
|
hbjson.h \
|
|
hbmacro.h \
|
|
hbmath.h \
|
|
hbmather.h \
|
|
hbmsgreg.h \
|
|
hbpcode.h \
|
|
hbpp.h \
|
|
hbrddcdx.h \
|
|
hbrdddbf.h \
|
|
hbrddfpt.h \
|
|
hbrdddel.h \
|
|
hbrddntx.h \
|
|
hbrddsdf.h \
|
|
hbrddnsx.h \
|
|
hbregex.h \
|
|
hbset.h \
|
|
hbsetup.h \
|
|
hbsocket.h \
|
|
hbstack.h \
|
|
hbsxfunc.h \
|
|
hbtask.h \
|
|
hbthread.h \
|
|
hbtrace.h \
|
|
hbtypes.h \
|
|
hbver.h \
|
|
hbvm.h \
|
|
hbvmint.h \
|
|
hbvmopt.h \
|
|
hbvmpub.h \
|
|
hbxvm.h \
|
|
hbwince.h \
|
|
hbwinuni.h \
|
|
hbznet.h \
|
|
hb_io.h \
|
|
|
|
PRG_HEADERS := \
|
|
harbour.hbx \
|
|
hbcpage.hbx \
|
|
hblang.hbx \
|
|
hbscalar.hbx \
|
|
hbusrrdd.hbx \
|
|
\
|
|
achoice.ch \
|
|
assert.ch \
|
|
blob.ch \
|
|
box.ch \
|
|
button.ch \
|
|
color.ch \
|
|
common.ch \
|
|
dbedit.ch \
|
|
dbinfo.ch \
|
|
dbstruct.ch \
|
|
directry.ch \
|
|
error.ch \
|
|
fileio.ch \
|
|
getexit.ch \
|
|
hb.ch \
|
|
hbclass.ch \
|
|
hbcom.ch \
|
|
hbdebug.ch \
|
|
hbdyn.ch \
|
|
hbextcdp.ch \
|
|
hbextern.ch \
|
|
hbextlng.ch \
|
|
hbgfx.ch \
|
|
hbgfxdef.ch \
|
|
hbgtinfo.ch \
|
|
hbhash.ch \
|
|
hbhrb.ch \
|
|
hbinkey.ch \
|
|
hblang.ch \
|
|
hblpp.ch \
|
|
hbmacro.ch \
|
|
hbmath.ch \
|
|
hbmemory.ch \
|
|
hbmemvar.ch \
|
|
hboo.ch \
|
|
hbpers.ch \
|
|
hbsetup.ch \
|
|
hbsix.ch \
|
|
hbsocket.ch \
|
|
hbstdgen.ch \
|
|
hbstrict.ch \
|
|
hbsxdef.ch \
|
|
hbthread.ch \
|
|
hbtrace.ch \
|
|
hbusrrdd.ch \
|
|
hbver.ch \
|
|
hbzlib.ch \
|
|
inkey.ch \
|
|
memoedit.ch \
|
|
ord.ch \
|
|
rddsys.ch \
|
|
reserved.ch \
|
|
set.ch \
|
|
setcurs.ch \
|
|
simpleio.ch \
|
|
std.ch \
|
|
tbrowse.ch \
|
|
|
|
include $(TOP)$(ROOT)config/header.mk
|