1997-11-25 06:05:25 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
1999-07-03 16:31:50 +08:00
|
|
|
EXTRA_DIST = \
|
2000-08-25 01:53:43 +08:00
|
|
|
makefile.mingw \
|
|
|
|
makefile.mingw.in \
|
1999-08-03 07:53:26 +08:00
|
|
|
makefile.msc \
|
1999-08-27 07:49:39 +08:00
|
|
|
twain/README \
|
|
|
|
twain/tw_dump.c \
|
|
|
|
twain/tw_dump.h \
|
|
|
|
twain/tw_func.c \
|
|
|
|
twain/tw_func.h \
|
|
|
|
twain/tw_sess.c \
|
|
|
|
twain/tw_util.c \
|
|
|
|
twain/tw_util.h \
|
|
|
|
twain/twain.c \
|
|
|
|
twain/twain.h \
|
1999-08-03 07:53:26 +08:00
|
|
|
winsnap/resource.h \
|
|
|
|
winsnap/select.cur \
|
|
|
|
winsnap/small.ico \
|
|
|
|
winsnap/winsnap.c \
|
|
|
|
winsnap/winsnap.h \
|
|
|
|
winsnap/winsnap.ico \
|
|
|
|
winsnap/winsnap.rc
|
1999-07-03 16:31:50 +08:00
|
|
|
|
2000-04-23 03:47:01 +08:00
|
|
|
## if BUILD_PYTHON
|
|
|
|
## pygimp=pygimp
|
|
|
|
## else
|
|
|
|
## pygimp=
|
|
|
|
## endif
|
1999-09-06 11:45:34 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
SUBDIRS = \
|
1998-03-20 10:40:04 +08:00
|
|
|
libgck \
|
2001-07-30 08:46:09 +08:00
|
|
|
dbbrowser \
|
|
|
|
script-fu \
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
## $(GIMP_PERL) \
|
1999-03-26 07:14:36 +08:00
|
|
|
FractalExplorer \
|
1998-06-19 09:45:03 +08:00
|
|
|
Lighting \
|
|
|
|
MapObject \
|
1997-11-25 06:05:25 +08:00
|
|
|
bmp \
|
|
|
|
faxg3 \
|
|
|
|
fits \
|
1997-12-15 11:44:55 +08:00
|
|
|
flame \
|
1998-07-14 14:15:10 +08:00
|
|
|
fp \
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
## gap \
|
|
|
|
## gdyntext \
|
2001-10-20 00:41:09 +08:00
|
|
|
gfig \
|
2001-09-03 21:03:34 +08:00
|
|
|
gflare \
|
1997-11-25 06:05:25 +08:00
|
|
|
gfli \
|
2001-10-20 00:41:09 +08:00
|
|
|
gimpressionist \
|
1999-10-04 10:23:41 +08:00
|
|
|
$(HELPBROWSER) \
|
2001-09-23 07:17:12 +08:00
|
|
|
ifscompose \
|
2001-10-20 00:41:09 +08:00
|
|
|
imagemap \
|
1997-11-25 06:05:25 +08:00
|
|
|
maze \
|
|
|
|
mosaic \
|
1998-04-08 15:07:26 +08:00
|
|
|
pagecurl \
|
1997-11-25 06:05:25 +08:00
|
|
|
print \
|
1999-04-06 04:31:20 +08:00
|
|
|
rcm \
|
1997-11-25 06:05:25 +08:00
|
|
|
sgi \
|
1999-07-10 05:52:00 +08:00
|
|
|
sel2path \
|
1999-06-24 08:58:39 +08:00
|
|
|
$(WEBBROWSER) \
|
2001-05-20 22:15:09 +08:00
|
|
|
$(XJT) \
|
2001-02-14 12:55:21 +08:00
|
|
|
plugin-helper \
|
1999-06-23 14:38:20 +08:00
|
|
|
common
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
.PHONY: files
|
|
|
|
|
|
|
|
files:
|
|
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
|
|
echo $$p; \
|
|
|
|
done
|
|
|
|
@for subdir in $(SUBDIRS); do \
|
|
|
|
files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
|
|
|
|
for file in $$files; do \
|
|
|
|
echo $$subdir/$$file; \
|
|
|
|
done; \
|
|
|
|
done
|
2000-08-25 01:53:43 +08:00
|
|
|
|
|
|
|
makefile.mingw: $(top_builddir)/config.status $(top_srcdir)/plug-ins/makefile.mingw.in
|
|
|
|
cd $(top_builddir) && CONFIG_FILES=plug-ins/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|