1997-11-25 06:05:25 +08:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2001-01-22 09:46:28 +08:00
|
|
|
SUBDIRS = pdb tools
|
2001-01-22 05:58:16 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
scriptdata =
|
|
|
|
|
2001-01-03 07:16:40 +08:00
|
|
|
if HAVE_GLIBC_REGEX
|
|
|
|
regex_sources =
|
|
|
|
else
|
|
|
|
regex_sources = regexrepl.c regexrepl.h
|
|
|
|
endif
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
bin_PROGRAMS = gimp
|
|
|
|
|
|
|
|
gimp_SOURCES = \
|
|
|
|
about_dialog.c \
|
|
|
|
about_dialog.h \
|
|
|
|
app_procs.c \
|
|
|
|
app_procs.h \
|
2001-01-19 21:13:03 +08:00
|
|
|
appenums.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
appenv.h \
|
1999-09-12 03:33:33 +08:00
|
|
|
apptypes.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
asupsample.c \
|
|
|
|
asupsample.h \
|
2000-07-25 06:11:28 +08:00
|
|
|
authors.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
batch.c \
|
|
|
|
batch.h \
|
|
|
|
boundary.c \
|
|
|
|
boundary.h \
|
1998-07-09 13:31:06 +08:00
|
|
|
brush_edit.c \
|
|
|
|
brush_edit.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
brush_header.h \
|
1999-08-13 01:53:51 +08:00
|
|
|
brush_scale.c \
|
|
|
|
brush_scale.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
brush_select.c \
|
|
|
|
brush_select.h \
|
2001-02-04 22:10:03 +08:00
|
|
|
brushes.c \
|
|
|
|
brushes.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
channels_dialog.c \
|
|
|
|
channels_dialog.h \
|
|
|
|
channel_ops.c \
|
|
|
|
channel_ops.h \
|
|
|
|
color_area.c \
|
|
|
|
color_area.h \
|
Bit of a large checkin this - it's basically three things: 1 - GimpModules
Sun Jan 11 00:24:21 GMT 1999 Austin Donnelly <austin@greenend.org.uk>
Bit of a large checkin this - it's basically three things:
1 - GimpModules using gmodules to dynamically load and
initialise modules at gimp start of day.
2 - Color selectors now register themselves with a color
notebook.
3 - progress bars have been cleaned up a bit, so now have
progress indictations on all transform tool and gradient
fill operations. Not done bucket fill, but that seems to
be the next candidate.
New directories:
* modules/: new directory for dynamically loadable modules.
New files:
* modules/.cvsignore
* modules/Makefile.am
* modules/colorsel_gtk.c: GTK color selector wrapped up as a
color selector the gimp can use.
* app/gimpprogress.[ch]: progress bars within gimp core, either as
popups, or in the status bar. This is mainly code moved out
of plug-in.c
* app/color_notebook.[ch]: color selector notebook, implementing
very similar interface to color_select.h so it can be used as
a drop-in replacement for it.
* libgimp/color_selector.h: API color selectors need to implement
to become a page in the color_notebook.
* libgimp/gimpmodule.h: API gimp modules need to implement to be
initialised by gimp at start of day.
Modified files:
* Makefile.am: add modules/ to SUBDIRS
* libgimp/Makefile.am: install gimpmodule.h and color_selector.h
* app/gimprc.[ch]: recognise module-path variable.
* gimprc.in: set module-path variable to something sensible
(currently "${gimp_dir}/modules:${gimp_plugin_dir}/modules").
* app/Makefile.am: build color notebook and gimpprogress
* app/app_procs.c: register internal GIMP color selector with
color notebook.
* app/asupsample.c: call progress function less frequently for
better performance.
* app/asupsample.h: progress_func_t typedef moved to gimpprogress.h
* app/blend.c: make callbacks to a progress function
* app/color_area.c: use a color notebook rather than a color selector
* app/color_panel.c: ditto
* app/color_select.c: export color selector interface for notebook
* app/color_select.h: color_select_init() prototype
* app/flip_tool.c: flip the image every time, rather than every
second click.
* app/interface.c: move progress bar stuff out to
gimpprogress.c. Make the code actually work while we're at it.
* app/interface.h: move prototypes for progress functions out to
gimpprogress.h
* app/plug_in.c: load and initialise modules (if possible). Move
progress bar handling code out to gimpprogress.c
* app/plug_in.h: keep only a gimp_progress * for each plugin, not
a whole bunch of GtkWidgets.
* app/scale_tool.c
* app/rotate_tool.c
* app/shear_tool.c
* app/perspective_tool.c: progress bar during operation.
De-sensitise the dialog to discourage the user from running
two transforms in parallel.
* app/transform_core.c: recalculate grid coords when bounding box
changes. Only initialise the action area of the dialog once,
to avoid multiple "ok" / "reset" buttons appearing. Undraw
transform tool with correct matrix to get rid of handle
remains on screen. Call a progress function as we apply the
transform matrix. A few new i18n markups. Invalidate
floating selection marching ants after applying matrix.
* app/transform_core.h: transform_core_do() takes an optional
progress callback argument (and data).
* plug-ins/oilify/oilify.c: send progress bar updates after every
pixel region, not only if they processed a multiple of 5
pixels (which was quite unlikely, and therefore gave a jerky
progress indication).
1999-01-11 08:57:33 +08:00
|
|
|
color_notebook.c \
|
|
|
|
color_notebook.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
color_panel.c \
|
|
|
|
color_panel.h \
|
|
|
|
color_select.c \
|
|
|
|
color_select.h \
|
|
|
|
color_transfer.c \
|
|
|
|
color_transfer.h \
|
|
|
|
colormaps.c \
|
|
|
|
colormaps.h \
|
1999-01-08 03:53:05 +08:00
|
|
|
colormap_dialog.c \
|
|
|
|
colormap_dialog.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
commands.c \
|
|
|
|
commands.h \
|
1999-06-19 02:29:27 +08:00
|
|
|
context_manager.c \
|
|
|
|
context_manager.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
convert.c \
|
|
|
|
convert.h \
|
|
|
|
cursorutil.c \
|
|
|
|
cursorutil.h \
|
|
|
|
datafiles.c \
|
|
|
|
datafiles.h \
|
|
|
|
desaturate.c \
|
|
|
|
desaturate.h \
|
1998-06-06 11:49:01 +08:00
|
|
|
devices.c \
|
|
|
|
devices.h \
|
1999-01-11 07:20:33 +08:00
|
|
|
dialog_handler.c \
|
|
|
|
dialog_handler.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
disp_callbacks.c \
|
|
|
|
disp_callbacks.h \
|
1998-07-14 14:15:10 +08:00
|
|
|
docindex.c \
|
|
|
|
docindex.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
draw_core.c \
|
|
|
|
draw_core.h \
|
|
|
|
drawable.c \
|
|
|
|
drawable.h \
|
1998-07-29 05:11:47 +08:00
|
|
|
errorconsole.c \
|
|
|
|
errorconsole.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
errors.c \
|
|
|
|
errors.h \
|
|
|
|
equalize.c \
|
|
|
|
equalize.h \
|
|
|
|
fileops.c \
|
|
|
|
fileops.h \
|
1999-12-15 03:38:38 +08:00
|
|
|
fileopsP.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
floating_sel.c \
|
|
|
|
floating_sel.h \
|
1998-06-09 05:53:45 +08:00
|
|
|
file_new_dialog.c \
|
|
|
|
file_new_dialog.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
fsdither.h \
|
|
|
|
gdisplay.c \
|
|
|
|
gdisplay.h \
|
|
|
|
gdisplay_ops.c \
|
|
|
|
gdisplay_ops.h \
|
|
|
|
general.c \
|
|
|
|
general.h \
|
|
|
|
gimage.c \
|
|
|
|
gimage.h \
|
|
|
|
gimage_mask.c \
|
|
|
|
gimage_mask.h \
|
1998-07-09 13:31:06 +08:00
|
|
|
gimpbrush.c \
|
|
|
|
gimpbrush.h \
|
|
|
|
gimpbrushgenerated.c \
|
|
|
|
gimpbrushgenerated.h \
|
1999-08-27 04:11:36 +08:00
|
|
|
gimpbrushpipe.c \
|
|
|
|
gimpbrushpipe.h \
|
2001-02-02 02:44:22 +08:00
|
|
|
gimpchannel.c \
|
|
|
|
gimpchannel.h \
|
2001-02-04 00:51:10 +08:00
|
|
|
gimpcontainer.c \
|
|
|
|
gimpcontainer.h \
|
1999-06-18 03:13:08 +08:00
|
|
|
gimpcontext.c \
|
|
|
|
gimpcontext.h \
|
1999-09-01 08:12:33 +08:00
|
|
|
gimpcontextpreview.c \
|
|
|
|
gimpcontextpreview.h \
|
2001-02-04 22:10:03 +08:00
|
|
|
gimpdatalist.c \
|
|
|
|
gimpdatalist.h \
|
1999-08-21 03:59:06 +08:00
|
|
|
gimpdnd.c \
|
1999-08-20 03:53:30 +08:00
|
|
|
gimpdnd.h \
|
2001-01-22 05:58:16 +08:00
|
|
|
gimpdrawable.c \
|
|
|
|
gimpdrawable.h \
|
2001-01-29 21:51:23 +08:00
|
|
|
gimpdrawablepreview.c \
|
|
|
|
gimpdrawablepreview.h \
|
1999-09-28 01:58:10 +08:00
|
|
|
gimphelp.c \
|
|
|
|
gimphelp.h \
|
1999-04-19 05:22:41 +08:00
|
|
|
gimphistogram.c \
|
|
|
|
gimphistogram.h \
|
2001-01-22 05:58:16 +08:00
|
|
|
gimpimage.c \
|
|
|
|
gimpimage.h \
|
2001-02-02 02:44:22 +08:00
|
|
|
gimplayer.c \
|
|
|
|
gimplayer.h \
|
2001-01-29 00:44:22 +08:00
|
|
|
gimplayermask.c \
|
|
|
|
gimplayermask.h \
|
1998-07-12 19:40:43 +08:00
|
|
|
gimplist.c \
|
|
|
|
gimplist.h \
|
1999-02-16 16:53:54 +08:00
|
|
|
gimplut.c \
|
|
|
|
gimplut.h \
|
2001-01-22 05:58:16 +08:00
|
|
|
gimpmarshal.c \
|
|
|
|
gimpmarshal.h \
|
|
|
|
gimpobject.c \
|
|
|
|
gimpobject.h \
|
2001-01-22 03:53:56 +08:00
|
|
|
gimppalette.c \
|
|
|
|
gimppalette.h \
|
1998-10-30 18:21:33 +08:00
|
|
|
gimpparasite.c \
|
|
|
|
gimpparasite.h \
|
2001-01-22 05:58:16 +08:00
|
|
|
gimppreviewcache.h \
|
|
|
|
gimppreviewcache.c \
|
Bit of a large checkin this - it's basically three things: 1 - GimpModules
Sun Jan 11 00:24:21 GMT 1999 Austin Donnelly <austin@greenend.org.uk>
Bit of a large checkin this - it's basically three things:
1 - GimpModules using gmodules to dynamically load and
initialise modules at gimp start of day.
2 - Color selectors now register themselves with a color
notebook.
3 - progress bars have been cleaned up a bit, so now have
progress indictations on all transform tool and gradient
fill operations. Not done bucket fill, but that seems to
be the next candidate.
New directories:
* modules/: new directory for dynamically loadable modules.
New files:
* modules/.cvsignore
* modules/Makefile.am
* modules/colorsel_gtk.c: GTK color selector wrapped up as a
color selector the gimp can use.
* app/gimpprogress.[ch]: progress bars within gimp core, either as
popups, or in the status bar. This is mainly code moved out
of plug-in.c
* app/color_notebook.[ch]: color selector notebook, implementing
very similar interface to color_select.h so it can be used as
a drop-in replacement for it.
* libgimp/color_selector.h: API color selectors need to implement
to become a page in the color_notebook.
* libgimp/gimpmodule.h: API gimp modules need to implement to be
initialised by gimp at start of day.
Modified files:
* Makefile.am: add modules/ to SUBDIRS
* libgimp/Makefile.am: install gimpmodule.h and color_selector.h
* app/gimprc.[ch]: recognise module-path variable.
* gimprc.in: set module-path variable to something sensible
(currently "${gimp_dir}/modules:${gimp_plugin_dir}/modules").
* app/Makefile.am: build color notebook and gimpprogress
* app/app_procs.c: register internal GIMP color selector with
color notebook.
* app/asupsample.c: call progress function less frequently for
better performance.
* app/asupsample.h: progress_func_t typedef moved to gimpprogress.h
* app/blend.c: make callbacks to a progress function
* app/color_area.c: use a color notebook rather than a color selector
* app/color_panel.c: ditto
* app/color_select.c: export color selector interface for notebook
* app/color_select.h: color_select_init() prototype
* app/flip_tool.c: flip the image every time, rather than every
second click.
* app/interface.c: move progress bar stuff out to
gimpprogress.c. Make the code actually work while we're at it.
* app/interface.h: move prototypes for progress functions out to
gimpprogress.h
* app/plug_in.c: load and initialise modules (if possible). Move
progress bar handling code out to gimpprogress.c
* app/plug_in.h: keep only a gimp_progress * for each plugin, not
a whole bunch of GtkWidgets.
* app/scale_tool.c
* app/rotate_tool.c
* app/shear_tool.c
* app/perspective_tool.c: progress bar during operation.
De-sensitise the dialog to discourage the user from running
two transforms in parallel.
* app/transform_core.c: recalculate grid coords when bounding box
changes. Only initialise the action area of the dialog once,
to avoid multiple "ok" / "reset" buttons appearing. Undraw
transform tool with correct matrix to get rid of handle
remains on screen. Call a progress function as we apply the
transform matrix. A few new i18n markups. Invalidate
floating selection marching ants after applying matrix.
* app/transform_core.h: transform_core_do() takes an optional
progress callback argument (and data).
* plug-ins/oilify/oilify.c: send progress bar updates after every
pixel region, not only if they processed a multiple of 5
pixels (which was quite unlikely, and therefore gave a jerky
progress indication).
1999-01-11 08:57:33 +08:00
|
|
|
gimpprogress.c \
|
|
|
|
gimpprogress.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
gimprc.c \
|
|
|
|
gimprc.h \
|
1999-09-28 01:58:10 +08:00
|
|
|
gimpui.c \
|
|
|
|
gimpui.h \
|
1999-03-17 04:14:07 +08:00
|
|
|
gimpunit.c \
|
1997-11-25 06:05:25 +08:00
|
|
|
global_edit.c \
|
|
|
|
global_edit.h \
|
|
|
|
gradient.c \
|
1999-10-28 23:05:49 +08:00
|
|
|
gradientP.h \
|
1998-11-05 07:30:18 +08:00
|
|
|
gradient_header.h \
|
1999-10-28 23:05:49 +08:00
|
|
|
gradient_select.h \
|
1998-11-05 07:30:18 +08:00
|
|
|
gradient_select.c \
|
1997-11-25 06:05:25 +08:00
|
|
|
gradient.h \
|
|
|
|
gximage.c \
|
|
|
|
gximage.h \
|
|
|
|
image_map.c \
|
|
|
|
image_map.h \
|
1999-08-26 12:39:21 +08:00
|
|
|
image_new.c \
|
|
|
|
image_new.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
image_render.c \
|
|
|
|
image_render.h \
|
1999-06-02 13:55:02 +08:00
|
|
|
indicator_area.c \
|
|
|
|
indicator_area.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
info_dialog.c \
|
|
|
|
info_dialog.h \
|
|
|
|
info_window.c \
|
|
|
|
info_window.h \
|
|
|
|
interface.c \
|
|
|
|
interface.h \
|
|
|
|
invert.c \
|
|
|
|
invert.h \
|
|
|
|
layer_select.c \
|
|
|
|
layer_select.h \
|
|
|
|
layers_dialog.c \
|
|
|
|
layers_dialog.h \
|
1999-06-22 04:04:04 +08:00
|
|
|
layers_dialogP.h \
|
1999-06-07 01:26:51 +08:00
|
|
|
lc_dialog.c \
|
|
|
|
lc_dialog.h \
|
|
|
|
lc_dialogP.h \
|
2001-01-24 00:05:10 +08:00
|
|
|
libgimp_glue.c \
|
|
|
|
libgimp_glue.h \
|
1999-04-09 14:00:11 +08:00
|
|
|
lut_funcs.c \
|
|
|
|
lut_funcs.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
main.c \
|
|
|
|
menus.c \
|
|
|
|
menus.h \
|
1999-01-19 08:03:00 +08:00
|
|
|
module_db.c \
|
|
|
|
module_db.h \
|
1999-08-13 06:21:04 +08:00
|
|
|
nav_window.c \
|
|
|
|
nav_window.h \
|
1998-04-03 18:29:25 +08:00
|
|
|
ops_buttons.c \
|
|
|
|
ops_buttons.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
palette.c \
|
1998-12-24 08:08:39 +08:00
|
|
|
palette.h \
|
2001-01-22 05:29:31 +08:00
|
|
|
palette_import.c \
|
|
|
|
palette_import.h \
|
1998-12-24 08:08:39 +08:00
|
|
|
palette_select.c \
|
|
|
|
palette_select.h \
|
1999-10-27 02:27:27 +08:00
|
|
|
paletteP.h \
|
1998-10-30 18:21:33 +08:00
|
|
|
parasitelist.c \
|
|
|
|
parasitelist.h \
|
2000-02-16 09:47:22 +08:00
|
|
|
path.c \
|
2000-02-16 21:52:33 +08:00
|
|
|
path.h \
|
|
|
|
pathP.h \
|
|
|
|
path_transform.h \
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog.c \
|
1999-06-07 01:26:51 +08:00
|
|
|
paths_dialog.h \
|
|
|
|
paths_dialogP.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
pattern_header.h \
|
|
|
|
pattern_select.c \
|
|
|
|
pattern_select.h \
|
|
|
|
patterns.c \
|
|
|
|
patterns.h \
|
|
|
|
plug_in.c \
|
|
|
|
plug_in.h \
|
1998-06-09 05:53:45 +08:00
|
|
|
preferences_dialog.c \
|
|
|
|
preferences_dialog.h \
|
1999-07-07 11:18:54 +08:00
|
|
|
qmask.c \
|
|
|
|
qmask.h \
|
2000-09-25 09:27:47 +08:00
|
|
|
resolution_calibrate.c \
|
|
|
|
resolution_calibrate.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
resize.c \
|
|
|
|
resize.h \
|
|
|
|
scale.c \
|
|
|
|
scale.h \
|
1999-10-04 14:48:24 +08:00
|
|
|
scan_convert.c \
|
|
|
|
scan_convert.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
scroll.c \
|
|
|
|
scroll.h \
|
|
|
|
selection.c \
|
|
|
|
selection.h \
|
1998-06-23 01:30:40 +08:00
|
|
|
session.h \
|
|
|
|
session.c \
|
1997-11-25 06:05:25 +08:00
|
|
|
tips_dialog.c \
|
|
|
|
tips_dialog.h \
|
2001-01-22 11:30:42 +08:00
|
|
|
toolbox.c \
|
|
|
|
toolbox.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
undo.c \
|
|
|
|
undo.h \
|
Honest, guv, it's not a feature - it's a tightly integrated package of
Mon Sep 20 12:51:30 EDT 1999 Austin Donnelly <austin@gimp.org>
Honest, guv, it's not a feature - it's a tightly integrated
package of undo system cleanups and fixes.
NEW FILES:
* app/undo_history.c: window showing recent undo (and redo) steps
available.
* app/undo_types.h: broken out of undo.h to fix circular includes.
MODIFIED FILES:
* app/Makefile.am: compile undo_history.c
* app/channel.h: use enum for channel undo type, not just magic
numbers.
* app/layer.h: same for layer undos.
* app/commands.c: edit_show_undo_history_cmd_callback() function to
pull up undo history window.
* app/commands.h: prototype for above.
* app/gdisplay.c: make undo / redo menu items sensitive according
to whether they would do anything. Would be easy to change
the text to say what would be undone/redone, but I don't know
the GTK.
* app/gimpimage.c: new signal emitted by gimage:
UNDO_EVENT. gimp_image_undo_event() function to emit it.
* app/gimpimage.h: prototype for above.
* app/gimpimageP.h: pushing_undo_group member is now an undo_type,
not an int. Keep undo history widget here too (if created).
* app/menus.c: add "Edit/Undo history..." to image menu.
* app/undo.c: new types: enums undo_type and undo_state rather than
ints and magic numbers. All undo_pop_* and undo_free_*
functions made static. New static function
undo_type_to_name(). Issue undo event signals on various
important events (eg undo pushed, undo popped etc).
undo_push() now takes a "dirties_image" arg to say whether
image should be dirtied. Layer moves now dirty the image. A
couple of g_return_if_fails () on undo_pop and undo_redo to
assert we're not in the middle of an undo group.
undo_get_{undo,redo}_name() to peek at names of top items on
undo and redo stacks resp. undo_map_over_{undo,redo}_stack()
to run a function for each item or group on stack. Layer and
channel undos use symbolic names rather than 0 or 1. Array
mapping undo types to names.
* app/undo.h: split out undo types to undo_types.h. Prototypes
for functions described above. undo_event_t enum.
undo_history_new() prototype lives here too.
Random other fixes:
* app/gimpdrawable.c
* app/image_render.c: default labels in switches to keep egcs happy.
* app/nav_window.c: some fixes to (sort of) cope with image res !=
screen res. Still needs work to handle non-square pixels
properly.
* app/paths_dialog.c: bad idea to call gimp_image_dirty()
directly. Even though it's currently commented out.
1999-09-21 01:15:20 +08:00
|
|
|
undo_history.c \
|
2001-01-29 10:45:02 +08:00
|
|
|
undo_history.h \
|
1999-10-07 07:48:01 +08:00
|
|
|
undo_types.h \
|
1999-03-17 04:14:07 +08:00
|
|
|
unitrc.h \
|
2000-04-08 02:55:21 +08:00
|
|
|
user_install.c \
|
|
|
|
user_install.h \
|
1997-11-25 06:05:25 +08:00
|
|
|
xcf.c \
|
2001-01-03 07:16:40 +08:00
|
|
|
xcf.h \
|
2001-01-30 02:15:38 +08:00
|
|
|
$(regex_sources) \
|
|
|
|
\
|
|
|
|
paint_funcs.c \
|
|
|
|
paint_funcs.h \
|
|
|
|
pixel_processor.c \
|
|
|
|
pixel_processor.h \
|
|
|
|
pixel_region.c \
|
|
|
|
pixel_region.h \
|
|
|
|
temp_buf.c \
|
|
|
|
temp_buf.h \
|
|
|
|
tile.c \
|
|
|
|
tile.h \
|
|
|
|
tile_pvt.h \
|
|
|
|
tile_cache.c \
|
|
|
|
tile_cache.h \
|
|
|
|
tile_manager.c \
|
|
|
|
tile_manager.h \
|
|
|
|
tile_manager_pvt.h \
|
|
|
|
tile_swap.c \
|
|
|
|
tile_swap.h \
|
|
|
|
\
|
|
|
|
gtkwrapbox.c \
|
|
|
|
gtkwrapbox.h \
|
|
|
|
gtkhwrapbox.c \
|
|
|
|
gtkhwrapbox.h \
|
|
|
|
gtkvwrapbox.c \
|
|
|
|
gtkvwrapbox.h \
|
|
|
|
histogramwidget.c \
|
|
|
|
histogramwidget.h \
|
|
|
|
\
|
|
|
|
marching_ants.h \
|
|
|
|
pixmaps.h \
|
|
|
|
pixmaps2.h \
|
|
|
|
wilber.h
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2000-08-25 01:53:43 +08:00
|
|
|
makefile.mingw \
|
|
|
|
makefile.mingw.in \
|
1999-03-09 05:59:55 +08:00
|
|
|
makefile.msc \
|
|
|
|
gimp.rc \
|
1999-06-07 02:17:57 +08:00
|
|
|
gimp.sym \
|
1999-03-09 05:59:55 +08:00
|
|
|
wilber.ico
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-09-14 06:31:07 +08:00
|
|
|
gimp_LDFLAGS = -export-dynamic -export-symbols $(srcdir)/gimp.sym
|
1999-05-05 06:59:54 +08:00
|
|
|
|
1999-04-10 12:54:34 +08:00
|
|
|
AM_CPPFLAGS = \
|
1997-11-25 06:05:25 +08:00
|
|
|
-DLIBDIR=\""$(gimpplugindir)"\" \
|
1998-12-02 07:19:01 +08:00
|
|
|
-DLOCALEDIR=\""$(localedir)"\" \
|
1999-01-03 07:28:01 +08:00
|
|
|
-DREGEX_MALLOC \
|
2000-07-31 00:25:19 +08:00
|
|
|
-DG_LOG_DOMAIN=\"Gimp\" \
|
1999-05-13 11:10:45 +08:00
|
|
|
@GIMP_THREAD_FLAGS@ \
|
|
|
|
@GIMP_MP_FLAGS@
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir) \
|
1998-08-06 07:46:04 +08:00
|
|
|
-I$(top_srcdir)/intl \
|
1998-06-20 03:47:34 +08:00
|
|
|
$(GTK_CFLAGS) \
|
1997-11-25 06:05:25 +08:00
|
|
|
-I$(includedir)
|
|
|
|
|
1999-05-05 06:59:54 +08:00
|
|
|
gimp_LDADD = \
|
2001-01-25 06:36:18 +08:00
|
|
|
pdb/libapppdb.la \
|
|
|
|
tools/libapptools.la \
|
|
|
|
$(top_builddir)/libgimpcolor/libgimpcolor.la \
|
|
|
|
$(top_builddir)/libgimpmath/libgimpmath.la \
|
|
|
|
$(top_builddir)/libgimpwidgets/libgimpwidgets.la \
|
|
|
|
$(top_builddir)/libgimp/libgimpi.a \
|
|
|
|
$(GTK_LIBS) \
|
|
|
|
$(GIMP_THREAD_LIBS) \
|
|
|
|
$(GIMP_MP_LIBS) \
|
1999-01-21 12:49:18 +08:00
|
|
|
$(INTLLIBS)
|
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
|
1999-01-08 03:53:05 +08:00
|
|
|
|
2000-08-25 01:53:43 +08:00
|
|
|
makefile.mingw: $(top_builddir)/config.status $(top_srcdir)/app/makefile.mingw.in
|
|
|
|
cd $(top_builddir) && CONFIG_FILES=app/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|