a6e9f61ee1
* NEW: Update *.component files to the new format. * BUG: Fix component TEMPLATE directory. [EXAMPLES] * NEW: PhotoTouch: Display the browsed directory path. [INTERPRETER] * NEW: Change the 'main' hook syntax. Add a macro to call the previous 'main' hook, so that several hooks can be declared. [GB.MEDIA] * NEW: New multimedia component based on GStreamer. [GB.GTK] * BUG: Fix timer management so that it is compatible with the GB.Every() interpreter API. * NEW: Allows multiple 'main' hooks. [GB.QT4] * NEW: Allows multiple 'main' hooks. git-svn-id: svn://localhost/gambas/trunk@4693 867c0c6c-44f3-4631-809d-bfa615b0a4ec
52 lines
1 KiB
Makefile
52 lines
1 KiB
Makefile
SUBDIRS = \
|
|
main \
|
|
@bzlib2_dir@ \
|
|
@zlib_dir@ \
|
|
@mysql_dir@ \
|
|
@odbc_dir@ \
|
|
@postgresql_dir@ \
|
|
@sqlite2_dir@ \
|
|
@sqlite3_dir@ \
|
|
@net_dir@ \
|
|
@curl_dir@ \
|
|
@smtp_dir@ \
|
|
@pcre_dir@ \
|
|
@sdl_dir@ \
|
|
@sdlsound_dir@ \
|
|
@libxml_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@ \
|
|
@gsl_dir@ \
|
|
@ncurses_dir@ \
|
|
@media_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"`;)
|