6b89a4fb69
* NEW: Add an gambas appdata file and install it in /usr/share/appdata. [DEVELOPMENT ENVIRONMENT] * BUG: ImageEditor: Fix a possible crash when pasting an image. * BUG: Correctly detect if a project is handled by subversion or not. [INTERPRETER] * NEW: Replace the internal `class->state` variable by two boolean flags: `class->loaded` and `class->ready`. * NEW: Overriding a class that is the parent of other classes is possible again. I don't remember what prevented that to work, so I want to see. [GB.DEBUG] * NEW: Propagate the changes in the interpreter class structure. [GB.EVAL] * NEW: Propagate the changes in the interpreter class structure. [GB.GUI.AREA] * BUG: GridView: Setting the background color correctly refreshes the control. [GB.JIT] * NEW: Propagate the changes in the interpreter class structure. [GB.NET.SMTP] * NEW: Replace the old gb.net.smtp component written in C and Gambas by a new component with the same name entirely written in Gambas. * BUG: Fix the authentication process. * BUG: Fix how the result of the EHLO command is read. [GB.QT4.EXT] * NEW: LCDNumber control is now put in a "Deprecated" tab in the IDE control toolbar. git-svn-id: svn://localhost/gambas/trunk@6403 867c0c6c-44f3-4631-809d-bfa615b0a4ec
59 lines
1.1 KiB
Makefile
59 lines
1.1 KiB
Makefile
SUBDIRS = \
|
|
main \
|
|
@bzlib2_dir@ \
|
|
@zlib_dir@ \
|
|
@mysql_dir@ \
|
|
@odbc_dir@ \
|
|
@postgresql_dir@ \
|
|
@sqlite2_dir@ \
|
|
@sqlite3_dir@ \
|
|
@net_dir@ \
|
|
@curl_dir@ \
|
|
@mime_dir@ \
|
|
@pcre_dir@ \
|
|
@sdl_dir@ \
|
|
@sdlsound_dir@ \
|
|
@libxml_dir@ \
|
|
@xml_dir@ \
|
|
@v4l_dir@ \
|
|
@crypt_dir@ \
|
|
@qt4_dir@ \
|
|
@gtk_dir@ \
|
|
@gtk3_dir@ \
|
|
@opengl_dir@ \
|
|
@x11_dir@ \
|
|
@keyring_dir@ \
|
|
@pdf_dir@ \
|
|
@cairo_dir@ \
|
|
@imageio_dir@ \
|
|
@imageimlib_dir@ \
|
|
@dbus_dir@ \
|
|
@gsl_dir@ \
|
|
@gmp_dir@ \
|
|
@ncurses_dir@ \
|
|
@media_dir@ \
|
|
@jit_dir@ \
|
|
@httpd_dir@ \
|
|
@openssl_dir@ \
|
|
@openal_dir@ \
|
|
comp \
|
|
app \
|
|
examples \
|
|
.
|
|
|
|
EXTRA_DIST = component.am README README.*[^~] TODO TEMPLATE reconf reconf-all
|
|
|
|
am__tar = ${AMTAR} cof - "$$tardir"
|
|
|
|
install-exec-local:
|
|
@if test -s $(srcdir)/warnings.log; then \
|
|
echo ; \
|
|
echo "||" ; \
|
|
cat $(srcdir)/warnings.log ; \
|
|
echo "||" ; \
|
|
echo ; \
|
|
fi
|
|
@rm -f $(srcdir)/warnings.log
|
|
|
|
dist-hook:
|
|
@(cd $(distdir); rm -rf `find . -name ".gambas" -o -name ".lock" -o -name ".xvpics" -o -name "*~" -o -name "*.out" -o -name "*.pot" -o -name "*.gambas" -o -name "core.*" -o -name "vgcore.*" -o -name ".kdbg*" -o -name ".svn"`;)
|