1999-12-17 Michael Natterer <mitch@gimp.org> * app/menus.c * app/paths_dialog.c: Minor help system fixes. * app/app_procs.c: I thought we should have a real splash (without decoration). Like it??? * app/about_dialog.c * app/flip_tool.c * app/gradient.c * app/levels.c * app/measure.c * app/text_tool.c * app/tools.c * app/transform_tool.c: Did some code browsing: I18N fixes, s/gtk_window_position/gtk_window_set_position/g, indentation paranoia, some g/<type>/g<type>/, various stuff (didn't change any logic).
59 lines
1.6 KiB
Makefile
59 lines
1.6 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = layers channels paths palette_editor gradient_editor display_filters color_selectors preferences
|
|
|
|
helpdatadir = $(gimpdatadir)/help/C/dialogs
|
|
|
|
helpdata_DATA = \
|
|
about.html \
|
|
border_selection.html \
|
|
brush_editor.html \
|
|
brush_selection.html \
|
|
convert_to_indexed.html \
|
|
copy_named.html \
|
|
cut_named.html \
|
|
device_status.html \
|
|
document_index.html \
|
|
edit_qmask_attributes.html \
|
|
error_console.html \
|
|
feather_selection.html \
|
|
file_new.html \
|
|
file_open.html \
|
|
file_save.html \
|
|
gradient_selection.html \
|
|
grow_selection.html \
|
|
help.html \
|
|
index.html \
|
|
indexed_palette.html \
|
|
info_window.html \
|
|
input_devices.html \
|
|
layers_and_channels.html \
|
|
module_browser.html \
|
|
navigation_window.html \
|
|
offset.html \
|
|
palette_selection.html \
|
|
paste_named.html \
|
|
pattern_selection.html \
|
|
really_close.html \
|
|
really_quit.html \
|
|
scale_image.html \
|
|
set_canvas_size.html \
|
|
shrink_selection.html \
|
|
tip_of_the_day.html \
|
|
tool_options.html \
|
|
undo_history.html
|
|
|
|
EXTRA_DIST = $(helpdata_DATA)
|
|
|
|
.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
|