b38df04095
* NEW: In icon editor, the width of the selection frame now follows the zoom level. * NEW: Support for preprocessor highlighting. [COMPILER] * NEW: Integrated preprocessor. The following commands are supported: #If <expr>, #Else If <expr>, #Else and #Endif. <expr> can be a combination of constants (OS_LINUX, OS_FREEBSD, ARCH_X86, ARCH_X86...), parenthesis, 'And' & 'Or' operators, version test (VERSION >= "3.0"). This is work in progress. [GB.EVAL] * NEW: A new highlighting color for the preprocessor. [GB.QT4.EXT] * NEW: A new highlighting color for the preprocessor in Editor control. git-svn-id: svn://localhost/gambas/trunk@3374 867c0c6c-44f3-4631-809d-bfa615b0a4ec
67 lines
1.5 KiB
Makefile
67 lines
1.5 KiB
Makefile
AM_CFLAGS += -I$(top_srcdir)/share
|
|
AM_CFLAGS_OPT += -I$(top_srcdir)/share
|
|
|
|
bin_PROGRAMS = gbc3 gba3 gbi3
|
|
noinst_PROGRAMS = gbcm3
|
|
##noinst_LTLIBRARIES = libgbcopt.la
|
|
|
|
##libgbcopt_la_CFLAGS= -DGAMBAS_PATH="\"$(bindir)\"" $(AM_CFLAGS_OPT)
|
|
|
|
gbc3_LDADD = @MATH_LIB@
|
|
gbc3_CFLAGS = -DGAMBAS_PATH="\"$(bindir)\"" $(AM_CFLAGS)
|
|
|
|
gbi3_LDADD = @DL_LIB@
|
|
gbi3_CFLAGS = -DGAMBAS_PATH="\"$(bindir)\"" $(AM_CFLAGS)
|
|
|
|
gba3_CFLAGS = -DGAMBAS_PATH="\"$(bindir)\"" $(AM_CFLAGS)
|
|
|
|
gbc3_SOURCES = \
|
|
gb_error.h gb_error.c \
|
|
gb_alloc.c gb_array.c \
|
|
gbc_class.h \
|
|
gbc_read.h gbc_read.c \
|
|
gbc_preprocess.h gbc_preprocess.c \
|
|
gbc_type.h gbc_compile.h gbc_header.h \
|
|
gbc_output.h gbc_trans.h \
|
|
gbc_reserved.c \
|
|
gbc_compile.c \
|
|
gbc_type.c gb_buffer.c \
|
|
gbc_dump.c gbc_class.c gbc_code.c gbc_trans.c gbc_header.c gbc_trans_code.c \
|
|
gbc_trans_expr.c gbc_trans_tree.c gbc_trans_ctrl.c gbc_trans_subr.c \
|
|
gbc_output.c gbc_pcode.c \
|
|
gb_file.h gb_file.c \
|
|
gbc_form.h gbc_form.c \
|
|
gb_str.h gb_str.c \
|
|
gbc_chown.h gbc_chown.c \
|
|
gb_common.c \
|
|
gbc_arch.c \
|
|
gb_table.c \
|
|
gbc.c
|
|
|
|
gba3_SOURCES = \
|
|
gb_error.h gb_error.c \
|
|
gb_alloc.c gb_array.c \
|
|
gb_table.c \
|
|
gb_str.h gb_str.c \
|
|
gb_file.h gb_file.c \
|
|
gbc_archive.h gbc_archive.c \
|
|
gbc_chown.h gbc_chown.c \
|
|
gb_common.c \
|
|
gbc_arch.c \
|
|
gba.c
|
|
|
|
gbi3_SOURCES= \
|
|
gb_error.h gb_error.c \
|
|
gb_alloc.c gb_array.c \
|
|
gb_str.h gb_str.c \
|
|
gb_file.h gb_file.c \
|
|
gb_table.c \
|
|
gb_common.c \
|
|
gbc_arch.c \
|
|
gbi.c
|
|
|
|
##libgbcopt_la_SOURCES = \
|
|
## gb_table.c
|
|
|
|
gbcm3_SOURCES = \
|
|
gbc_reserved_make.c
|