22 lines
536 B
Makefile
22 lines
536 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
helpdatadir = $(gimpdatadir)/help/C/save
|
|
|
|
helpdata_DATA = \
|
|
index.html \
|
|
save_by_extension.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
|
|
|
|
install-data-local:
|
|
rm -f $(DESTDIR)$(helpdatadir)/dialogs
|
|
$(LN_S) ../dialogs $(DESTDIR)$(helpdatadir)/dialogs
|
|
rm -f $(DESTDIR)$(helpdatadir)/filters
|
|
$(LN_S) ../filters $(DESTDIR)$(helpdatadir)/filters
|