d49fe17d83
* NEW: Remove any use of Component.UserPath and any reference to "user component". * NEW: "libraries" management. Libraries are defined in a new tab of the projet property dialog. At the moment, libraries exported classes are not taken into account by the automatic completion. * NEW: The ESC key now closes the help browser. * BUG: Correctly translate compilation error messages. [INTERPRETER] * NEW: "libraries" management. * NEW: The Component.UserPath property has been removed. * BUG: Evaluating "Application.Path" or "Application.Name" on the command line does not crash anymore. [COMPILER] * BUG: Enhance translation of some error messages. * NEW: Take libraries into account for exported class declarations. [ARCHIVER] * NEW: new "-x" option to extract a file from an archive. [GB.QT4.EXT] * NEW: Be more clever when deciding if a line has been modified after having its last character deleted. git-svn-id: svn://localhost/gambas/trunk@2909 867c0c6c-44f3-4631-809d-bfa615b0a4ec
61 lines
1.4 KiB
Makefile
61 lines
1.4 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_arch.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
|