37 lines
882 B
Makefile
37 lines
882 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 $(DESTDIR)$(helpdatadir)/dialogs
|
|
$(LN_S) ../dialogs/layers $(DESTDIR)$(helpdatadir)/dialogs
|