8bb2091ab0
* BUG: Fix the Makefile.am files of /main/lib sub-directories. [DEVELOPMENT ENVIRONMENT] * NEW: Now you can define the available control substitutions of your component in the project property dialog. * NEW: Now you can modify local variables, global variables and any field in debugger windows while debugging. [INTERPRETER] * NEW: Support for local and global variable assignment. [GB.DEBUG] * NEW: The debugger can assign values to expressions, local and global variables now. [GB.EVAL] * NEW: Support for local and global variable assignment. [GB.FORM] * NEW: TableView.NoKeyboard is a new property to disable the automatic keyboard navigation. (GB.QT4] * NEW: Disable the Glib event loop. * NEW: Do not automatically proceed events after a modal dialog is closed. git-svn-id: svn://localhost/gambas/trunk@2265 867c0c6c-44f3-4631-809d-bfa615b0a4ec
29 lines
621 B
Makefile
29 lines
621 B
Makefile
COMPONENT = gb.eval
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.eval.la
|
|
|
|
gb_eval_la_LIBADD =
|
|
gb_eval_la_LDFLAGS = -module @LD_FLAGS@
|
|
gb_eval_la_CFLAGS = -I$(top_srcdir)/share @INCLTDL@ $(AM_CFLAGS)
|
|
|
|
gb_eval_la_SOURCES = \
|
|
gb_alloc_override.h \
|
|
gb_error.h gb_error.c \
|
|
gb_array.c \
|
|
gb_table.c \
|
|
eval_code.h eval_code.c \
|
|
eval_read.h eval_read.c \
|
|
eval_reserved.c \
|
|
eval_trans.h eval_trans.c \
|
|
eval_trans_expr.c \
|
|
eval_trans_tree.c \
|
|
eval.h eval.c \
|
|
eval_analyze.h eval_analyze.c \
|
|
CExpression.h CExpression.c \
|
|
CSystem.h CSystem.c \
|
|
CHighlight.h CHighlight.c \
|
|
gb.eval.h \
|
|
main.h main.c
|
|
|
|
|