* harbour/common.mak
* harbour/bin/pack_src.sh
* harbour/source/vm/Makefile
- harbour/source/vm/dbgentry.c
* harbour/source/debug/Makefile
+ harbour/source/debug/dbgentry.c
* moved dbgentry.c from HVM to DEBUG library
* harbour/source/rtl/hbgtcore.c
+ added basic version of GTI_{NEW,GET,SET}WIN
* harbour/include/hbapidbg.h
* harbour/source/vm/hvm.c
* harbour/source/debug/debugger.prg
* harbour/source/debug/dbgentry.c
+ added set of .prg level functions (HB_DBG_*()) to control
debugger internals
* eliminated HB_INLINE() calls
* use to switch between user and debugger screen
* cleaned debugger interface in HVM, removed unused variables
added one common debug function
63 lines
904 B
Makefile
63 lines
904 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
ifeq ($(HB_ARCHITECTURE),w32)
|
|
ifeq ($(HB_COMPILER),mingw32)
|
|
C_MAIN = mainwin.c
|
|
DIRS = mainstd
|
|
else
|
|
C_MAIN = mainstd.c mainwin.c
|
|
endif
|
|
else
|
|
ifeq ($(HB_ARCHITECTURE),os2)
|
|
C_MAIN = mainstd.c mainpm.c
|
|
else
|
|
C_MAIN = main.c
|
|
endif
|
|
endif
|
|
|
|
C_SOURCES=\
|
|
arrays.c \
|
|
arrayshb.c \
|
|
asort.c \
|
|
break.c \
|
|
classes.c \
|
|
cmdarg.c \
|
|
debug.c \
|
|
dynlibhb.c \
|
|
dynsym.c \
|
|
codebloc.c \
|
|
estack.c \
|
|
eval.c \
|
|
evalhb.c \
|
|
extend.c \
|
|
fm.c \
|
|
garbage.c \
|
|
hashes.c \
|
|
hashfunc.c \
|
|
hvm.c \
|
|
initexit.c \
|
|
initsymb.c \
|
|
itemapi.c \
|
|
macro.c \
|
|
$(C_MAIN) \
|
|
memvars.c \
|
|
memvclip.c \
|
|
pcount.c \
|
|
proc.c \
|
|
pvalue.c \
|
|
runner.c \
|
|
|
|
PRG_SOURCES=\
|
|
harbinit.prg \
|
|
|
|
LIBNAME=vm
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|
|
ifneq ($(DIRS),)
|
|
include $(TOP)$(ROOT)config/dir.cf
|
|
endif
|