30 lines
761 B
Makefile
30 lines
761 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
helpdatadir = $(gimpdatadir)/help/C/file
|
|
|
|
helpdata_DATA = \
|
|
close.html \
|
|
index.html \
|
|
last_opened.html \
|
|
quit.html \
|
|
revert.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
|
|
rm -f $(DESTDIR)$(helpdatadir)/open
|
|
$(LN_S) ../open $(DESTDIR)$(helpdatadir)/open
|
|
rm -f $(DESTDIR)$(helpdatadir)/save
|
|
$(LN_S) ../save $(DESTDIR)$(helpdatadir)/save
|