20 lines
388 B
Makefile
20 lines
388 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
helpdatadir = $(gimpdatadir)/help/C/dialogs/paths
|
|
|
|
helpdata_DATA = \
|
|
export_path.html \
|
|
import_path.html \
|
|
index.html \
|
|
paths.html \
|
|
rename_path.html
|
|
|
|
EXTRA_DIST = $(helpdata_DATA)
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|