a73c2ed412
[COMPILER] * NEW: Rename a macro constant to avoid a symbol clash when compiling the interpreter. [INTERPRETER] * NEW: Get rid of a macro trick in 'gbx_eval.h' header. [GB.EVAL] * NEW: Highlight: Add three new color constants for syntax highlighting: Escape, Label and Constant. * NEW: Rename some source files. * NEW: Rename some constants. * NEW: Gambas syntax highlighter now use the three new contants for escape characters in strings, for labels, and for language contants (True, False, Null, +Inf and -Inf). [GB.EVAL.HIGHLIGHT] * NEW: Support for the new syntax highlighting color constants. [GB.FORM.EDITOR] * NEW: Support for the new syntax highlighting color constants.
29 lines
627 B
Makefile
29 lines
627 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 \
|
|
c_expression.h c_expression.c \
|
|
c_system.h c_system.c \
|
|
c_highlight.h c_highlight.c \
|
|
gb.eval.h \
|
|
main.h main.c
|
|
|
|
|