21 lines
421 B
Makefile
21 lines
421 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
helpdatadir = $(gimpdatadir)/help/C/image/select
|
|
|
|
helpdata_DATA = \
|
|
all.html \
|
|
float.html \
|
|
index.html \
|
|
invert.html \
|
|
none.html \
|
|
save_to_channel.html \
|
|
sharpen.html
|
|
|
|
EXTRA_DIST = $(helpdata_DATA)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|