gambas-source-code/Makefile.am
Benoît Minisini a2850ebc91 [CONFIGURATION]
* BUG: Do not compile database manager anymore, it has been deprecated.
* BUG: Compile the gb.dbus component.

[INTERPRETER]
* NEW: Pointer is a real datatype now.
* NEW: Static arrays came back. They are now like real array classes, 
  except that they are not resizable.
* NEW: IsPointer() is a new function that tells if an expression is a 
  pointer.
* NEW: All XXXX?() function synonymous were removed. Use the IsXXXX() 
  version instead.
* NEW: Remove now useless source files.

[COMPILER]
* NEW: Static arrays came back, with actually the same syntax as before.

[EXAMPLES]
* BUG: Fix the examples according to the new array syntax.



git-svn-id: svn://localhost/gambas/trunk@2949 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2010-05-19 12:43:57 +00:00

38 lines
798 B
Makefile

SUBDIRS = \
main \
@bzlib2_dir@ \
@zlib_dir@ \
@mysql_dir@ \
@odbc_dir@ \
@postgresql_dir@ \
@sqlite2_dir@ \
@sqlite3_dir@ \
@firebird_dir@ \
@net_dir@ \
@curl_dir@ \
@smtp_dir@ \
@pcre_dir@ \
@sdl_dir@ \
@sdlsound_dir@ \
@xml_dir@ \
@v4l_dir@ \
@crypt_dir@ \
@qt4_dir@ \
@gtk_dir@ \
@opengl_dir@ \
@desktop_dir@ \
@pdf_dir@ \
@cairo_dir@ \
@imageio_dir@ \
@imageimlib_dir@ \
@dbus_dir@ \
comp \
app \
examples
EXTRA_DIST = component.am README README.*[^~] TODO TEMPLATE reconf reconf-all
am__tar = ${AMTAR} cof - "$$tardir"
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"`;)