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).
36 lines
861 B
Makefile
36 lines
861 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = stack
|
|
|
|
helpdatadir = $(gimpdatadir)/help/C/layers
|
|
|
|
helpdata_DATA = \
|
|
add_alpha_channel.html \
|
|
alpha_to_selection.html \
|
|
anchor_layer.html \
|
|
delete_layer.html \
|
|
duplicate_layer.html \
|
|
flatten_image.html \
|
|
index.html \
|
|
layer_to_image_size.html \
|
|
mask_to_selection.html \
|
|
merge_down.html
|
|
|
|
EXTRA_DIST = $(helpdata_DATA)
|
|
|
|
.PHONY: files install-data-local
|
|
|
|
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
|
|
|
|
install-data-local:
|
|
rm -f $(helpdatadir)/dialogs
|
|
ln -sf ../dialogs/layers $(helpdatadir)/dialogs
|