23 lines
470 B
Makefile
23 lines
470 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
helpdatadir = $(gimpdatadir)/help/C/paths
|
|
|
|
helpdata_DATA = \
|
|
copy_path.html \
|
|
delete_path.html \
|
|
duplicate_path.html \
|
|
index.html \
|
|
new_path.html \
|
|
paste_path.html \
|
|
path_to_selection.html \
|
|
stroke_path.html
|
|
|
|
EXTRA_DIST = $(helpdata_DATA)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|