ac548e8734
* BUG: Compile files with maximum optimization correctly. [DEVELOPMENT ENVIRONMENT] * BUG: Remove The Form_Close event handler in the FHelp form. It did stupid things indirectly. [WIKI CGI SCRIPT] * NEW: Enhancements to support 2.0 and 3.0 descriptions on the same page. [GB.FORM] * NEW: Enhance the ColorChooser control. [GB.FORM.MDI] * BUG: Fix the Toolbar layout algorithm. [GB.IMAGE] * BUG: Image.Colorize() works again. [GB.IMAGE.EFFECT] * NEW: This component includes image filtering and effect routines. This is the old gb.image component from Gambas 2. Everything is not working correctly at the moment. [GB.QT4] * NEW: Color.LightForeground returns the light foreground color used for drawing separators and plain panel borders. * BUG: Prevent crashes coming from the fact that Qt deletes child widgets before emiting the destroy signal on the parent. git-svn-id: svn://localhost/gambas/trunk@2296 867c0c6c-44f3-4631-809d-bfa615b0a4ec
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
AM_CFLAGS += -I$(top_srcdir)/share
|
|
AM_CFLAGS_OPT += -I$(top_srcdir)/share
|
|
|
|
bin_PROGRAMS = gbc3 gba3 gbi3
|
|
noinst_LTLIBRARIES = libgbcopt.la
|
|
|
|
libgbcopt_la_CFLAGS= -DGAMBAS_PATH="\"$(bindir)\"" $(AM_CFLAGS_OPT)
|
|
|
|
gbc3_LDADD = libgbcopt.la @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_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.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 \
|
|
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 \
|
|
gbi.c
|
|
|
|
libgbcopt_la_SOURCES = \
|
|
gb_table.c
|