Files
harbour-core/harbour/include/Makefile
Przemyslaw Czerpak e7cb8c45a1 2009-12-20 22:12 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/Makefile
  + harbour/include/hbtrace.ch
  * harbour/include/hbtrace.h
  * harbour/src/rtl/trace.c
  * harbour/src/common/hbtrace.c
    ! fixed hb_tracelevel() C function to change trace filter instead of
      last message level. It also fixed .prg function HB_TRACELEVEL().
    + added new C function:
         void hb_tracelog( int level, const char * file, int line,
                           const char * proc, const char * fmt, ... )
    + added new .prg functions:
         hb_traceLogLevel( <nNewLevel> ) -> <nPrevLevel>
         hb_traceLog( <xMsgItems,...> ) // generate message at
                                        // hb_traceLogLevel()
         hb_traceLogAt( <nLevel>, <msg,...> )
    + added support for HB_TRACE() messages in .prg code with the same
      functionality as in C code:
         HB_TRACE( <level>, <msg,...> )
      HB_TRACE() code if filtered at compile time by HB_TR_LEVEL_* macros
      i.e. -DHB_TR_LEVEL_INFO used as harbour compiler parameter
      and at runtime by HB_TR_LEVEL=<level> envvar (set HB_TR_LEVEL=DEBUG)
      or by hb_traceLevel( <nLevel> ) function (hb_traceLevel( HB_TR_DEBUG ))
      Default compile time and runtime trace level for C and .prg code
      is HB_TR_WARNING.
2009-12-20 21:12:54 +00:00

137 lines
1.9 KiB
Makefile

#
# $Id$
#
ROOT := ../
C_HEADERS := \
clipdefs.h \
extend.h \
hbapi.h \
hbapicdp.h \
hbapicls.h \
hbapidbg.h \
hbapierr.h \
hbapifs.h \
hbapigt.h \
hbapiitm.h \
hbapilng.h \
hbapirdd.h \
hbapistr.h \
hbassert.h \
hbatomic.h \
hbbfish.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 \
hbmacro.h \
hbmath.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 \
hbthread.h \
hbtrace.h \
hbtypes.h \
hbver.h \
hbvm.h \
hbvmint.h \
hbvmopt.h \
hbvmpub.h \
hbxvm.h \
hbwince.h \
hbwinuni.h \
hbzlib.h \
hb_io.h \
PRG_HEADERS := \
achoice.ch \
assert.ch \
box.ch \
button.ch \
blob.ch \
color.ch \
common.ch \
dbedit.ch \
dbinfo.ch \
dbstruct.ch \
directry.ch \
error.ch \
fileio.ch \
getexit.ch \
hbclass.ch \
hbdebug.ch \
hbextcdp.ch \
hbextlng.ch \
hbextern.ch \
hbgfx.ch \
hbgfxdef.ch \
hbgtinfo.ch \
hbhrb.ch \
hbinkey.ch \
hblang.ch \
hbmacro.ch \
hbmath.ch \
hbmemory.ch \
hbmemvar.ch \
hboo.ch \
hbpers.ch \
hbsetup.ch \
hbsix.ch \
hbsocket.ch \
hbstdgen.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 \
hbsxdef.ch \
tbrowse.ch \
API_HEADERS := \
error.api \
extend.api \
filesys.api \
fm.api \
gt.api \
hbundoc.api \
item.api \
rdd.api \
vm.api \
include $(TOP)$(ROOT)config/header.mk