2001-05-09 03:00:13 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
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
|
|
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
|
|
|
-DG_LOG_DOMAIN=\"Gimp-Core\" \
|
|
|
|
@GIMP_THREAD_FLAGS@ \
|
|
|
|
@GIMP_MP_FLAGS@ \
|
|
|
|
@STRIP_END@
|
|
|
|
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_srcdir)/app \
|
|
|
|
$(GTK_CFLAGS) \
|
|
|
|
-I$(includedir) \
|
|
|
|
@STRIP_END@
|
|
|
|
|
2001-06-06 00:14:47 +08:00
|
|
|
noinst_LIBRARIES = libappcore.a
|
2001-05-09 03:00:13 +08:00
|
|
|
|
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
|
|
|
libappcore_a_sources = @STRIP_BEGIN@ \
|
2001-05-10 06:34:59 +08:00
|
|
|
core-types.h \
|
2001-07-05 03:31:35 +08:00
|
|
|
gimp.c \
|
|
|
|
gimp.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpbrush.c \
|
|
|
|
gimpbrush.h \
|
|
|
|
gimpbrush-header.h \
|
|
|
|
gimpbrushgenerated.c \
|
|
|
|
gimpbrushgenerated.h \
|
|
|
|
gimpbrushpipe.c \
|
|
|
|
gimpbrushpipe.h \
|
2001-06-26 20:09:43 +08:00
|
|
|
gimpbuffer.c \
|
|
|
|
gimpbuffer.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpchannel.c \
|
|
|
|
gimpchannel.h \
|
|
|
|
gimpcontainer.c \
|
|
|
|
gimpcontainer.h \
|
|
|
|
gimpcontext.c \
|
|
|
|
gimpcontext.h \
|
2001-07-07 20:17:23 +08:00
|
|
|
gimpcoreconfig.c \
|
|
|
|
gimpcoreconfig.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpdata.c \
|
|
|
|
gimpdata.h \
|
|
|
|
gimpdatafactory.c \
|
|
|
|
gimpdatafactory.h \
|
2001-07-10 03:48:30 +08:00
|
|
|
gimpdatafiles.c \
|
|
|
|
gimpdatafiles.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpdatalist.c \
|
|
|
|
gimpdatalist.h \
|
2001-08-11 15:47:35 +08:00
|
|
|
gimpdocuments.c \
|
|
|
|
gimpdocuments.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpdrawable.c \
|
|
|
|
gimpdrawable.h \
|
|
|
|
gimpdrawable-desaturate.c \
|
|
|
|
gimpdrawable-desaturate.h \
|
|
|
|
gimpdrawable-equalize.c \
|
|
|
|
gimpdrawable-equalize.h \
|
2001-05-23 07:05:35 +08:00
|
|
|
gimpdrawable-histogram.c \
|
|
|
|
gimpdrawable-histogram.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpdrawable-invert.c \
|
|
|
|
gimpdrawable-invert.h \
|
|
|
|
gimpdrawable-offset.c \
|
|
|
|
gimpdrawable-offset.h \
|
|
|
|
gimpdrawable-preview.c \
|
|
|
|
gimpdrawable-preview.h \
|
2001-07-04 02:38:56 +08:00
|
|
|
gimpedit.c \
|
|
|
|
gimpedit.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpgradient.c \
|
|
|
|
gimpgradient.h \
|
|
|
|
gimpimage.c \
|
|
|
|
gimpimage.h \
|
2001-05-15 19:25:25 +08:00
|
|
|
gimpimage-colorhash.c \
|
|
|
|
gimpimage-colorhash.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpimage-convert.c \
|
|
|
|
gimpimage-convert.h \
|
2001-05-16 00:42:08 +08:00
|
|
|
gimpimage-convert-fsdither.h \
|
2001-07-07 22:53:42 +08:00
|
|
|
gimpimage-crop.c \
|
|
|
|
gimpimage-crop.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpimage-duplicate.c \
|
|
|
|
gimpimage-duplicate.h \
|
2001-05-09 10:32:03 +08:00
|
|
|
gimpimage-mask.c \
|
|
|
|
gimpimage-mask.h \
|
2001-07-05 23:34:26 +08:00
|
|
|
gimpimage-new.c \
|
|
|
|
gimpimage-new.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpimage-undo.c \
|
|
|
|
gimpimage-undo.h \
|
2001-08-09 17:07:17 +08:00
|
|
|
gimpimagefile.c \
|
|
|
|
gimpimagefile.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimplayer.c \
|
|
|
|
gimplayer.h \
|
|
|
|
gimplayermask.c \
|
|
|
|
gimplayermask.h \
|
|
|
|
gimplist.c \
|
|
|
|
gimplist.h \
|
|
|
|
gimpobject.c \
|
|
|
|
gimpobject.h \
|
|
|
|
gimppattern.c \
|
|
|
|
gimppattern.h \
|
|
|
|
gimppattern-header.h \
|
|
|
|
gimppalette.c \
|
|
|
|
gimppalette.h \
|
|
|
|
gimppalette-import.c \
|
|
|
|
gimppalette-import.h \
|
2001-07-10 03:48:30 +08:00
|
|
|
gimpparasite.c \
|
|
|
|
gimpparasite.h \
|
|
|
|
gimpparasitelist.c \
|
|
|
|
gimpparasitelist.h \
|
2001-05-25 01:09:57 +08:00
|
|
|
gimppreviewcache.c \
|
|
|
|
gimppreviewcache.h \
|
2001-05-26 02:10:38 +08:00
|
|
|
gimpscanconvert.c \
|
|
|
|
gimpscanconvert.h \
|
2001-05-10 06:34:59 +08:00
|
|
|
gimptoolinfo.c \
|
|
|
|
gimptoolinfo.h \
|
2001-07-11 20:39:49 +08:00
|
|
|
gimpunit.c \
|
|
|
|
gimpunit.h \
|
2001-05-09 03:00:13 +08:00
|
|
|
gimpundo.c \
|
|
|
|
gimpundo.h \
|
|
|
|
gimpundostack.c \
|
|
|
|
gimpundostack.h \
|
|
|
|
gimpviewable.c \
|
2001-06-08 01:20:50 +08:00
|
|
|
gimpviewable.h \
|
|
|
|
@STRIP_END@
|
2001-05-09 03:00:13 +08:00
|
|
|
|
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
|
|
|
libappcore_a_built_sources = @STRIP_BEGIN@ \
|
|
|
|
stamp-gimpmarshal.h \
|
|
|
|
gimpmarshal.c \
|
|
|
|
gimpmarshal.h \
|
2001-06-08 01:20:50 +08:00
|
|
|
@STRIP_END@
|
2001-05-09 03:00:13 +08:00
|
|
|
|
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
|
|
|
libappcore_a_extra_sources = @STRIP_BEGIN@ \
|
|
|
|
gimpmarshal.list \
|
2001-06-08 01:20:50 +08:00
|
|
|
@STRIP_END@
|
2001-05-09 03:00:13 +08:00
|
|
|
|
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
|
|
|
libappcore_a_SOURCES = $(libappcore_a_built_sources) $(libappcore_a_sources)
|
|
|
|
|
|
|
|
EXTRS_DIST = \
|
|
|
|
makefile.msc \
|
|
|
|
$(libappcore_a_extra_sources)
|
|
|
|
|
|
|
|
#
|
|
|
|
# rules to generate built sources
|
|
|
|
#
|
|
|
|
# setup autogeneration dependancies
|
|
|
|
gen_sources = xgen-gmh xgen-gmc
|
|
|
|
CLEANFILES += $(gen_sources)
|
|
|
|
|
|
|
|
$(srcdir)/stamp-gimpmarshal.h: gimpmarshal.list gimpmarshal.h
|
|
|
|
echo "#ifndef __GIMP_MARSHAL_H__" > xgen-gmh \
|
|
|
|
&& echo "#define __GIMP_MARSHAL_H__" >> xgen-gmh \
|
|
|
|
&& glib-genmarshal --nostdinc --prefix=gimp_cclosure_marshal $(srcdir)/gimpmarshal.list --header >> xgen-gmh \
|
|
|
|
&& echo "#endif /* __GIMP_MARSHAL_H__ */" >> xgen-gmh \
|
|
|
|
&& (cmp -s xgen-gmh $(srcdir)/gimpmarshal.h || cp xgen-gmh $(srcdir)/gimpmarshal.h) \
|
|
|
|
&& rm -f xgen-gmh xgen-gmh~ \
|
|
|
|
&& echo timestamp > $@
|
|
|
|
$(srcdir)/gimpmarshal.c: $(srcdir)/stamp-gimpmarshal.h
|
|
|
|
echo "#include <glib.h>" > xgen-gmc \
|
|
|
|
&& echo "#include <glib-object.h>" >> xgen-gmc \
|
|
|
|
&& echo "#include \"gimpmarshal.h\"" >> xgen-gmc \
|
|
|
|
&& glib-genmarshal --nostdinc --prefix=gimp_cclosure_marshal $(srcdir)/gimpmarshal.list --body >> xgen-gmc \
|
|
|
|
&& cp xgen-gmc $(srcdir)/gimpmarshal.c \
|
|
|
|
&& rm -f xgen-gmc xgen-gmc~
|
|
|
|
|
2001-05-09 03:00:13 +08:00
|
|
|
.PHONY: files
|
|
|
|
|
|
|
|
files:
|
|
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
|
|
echo $$p; \
|
|
|
|
done
|