USER_MANUAL_LANGUAGES=no nl
help/no/solfege.xml: help/no/no.po
help/nl/solfege.xml: help/nl/nl.po

I18NDEFS:=--stringparam chunker.output.encoding "UTF-8"
XSLTPARAMS:=--param use.id.as.filename 1 --xinclude

dist_files += help/Makefile help/README \
	$(foreach dir,C $(USER_MANUAL_LANGUAGES),\
	$(wildcard help/$(dir)/*.html)\
	$(wildcard help/$(dir)/*.xml) \
	$(wildcard help/$(dir)/$(dir).po) \
	$(wildcard help/$(dir)/figures/*.png) \
	$(wildcard help/$(dir)/ly/*.ly) \
	$(wildcard help/$(dir)/ly/*.png) \
	)

installfiles+=$(foreach dir,$(USER_MANUAL_LANGUAGES),\
	$(wildcard help/$(dir)/*.html)\
	$(wildcard help/$(dir)/figures/*.png)\
	$(wildcard help/$(dir)/ly/*.png)\
	)

all: $(foreach dir,C $(USER_MANUAL_LANGUAGES),help/$(dir)/index.html)
maintainer-clean: rm-generated-user-manual

include help/C/Makefile

rm-generated-user-manual:
	for dir in $(USER_MANUAL_LANGUAGES); do \
		rm -f help/$$dir/*.html;\
		rm -f help/$$dir/*.xml;\
	done
	rm -f help/C/*.html

$(wildcard help/*/*.po): help/C/solfege.pot
	cp $@ $@.tmp
	$(MSGMERGE) -o $@ $@.tmp help/C/solfege.pot
	rm $@.tmp

%/solfege.xml:
ifdef XML2PO
	for filename in $(notdir $(USER_MANUAL_SOURCES)); do\
	$(XML2PO) -e -p $< -o $(dir $@)/$$filename help/C/$$filename;\
	done
endif

%/index.html: %/solfege.xml
ifeq "$(HAVE_STYLESHEET)" "yes"
 ifneq "$(XSLTPROC)" ""
	(cd $(dir $<); $(XSLTPROC) $(I18NDEFS) $(XSLTPARAMS) $(STYLESHEET) $(notdir $<))
 else
  ifneq "$(skipmanual)" "yes"
	@echo "*** Cannot rebuild the user manual because you don't have xsltproc installed."
	@echo "*** Run make as 'make skipmanual=yes' to ignore the problem and don't build the docs"
	exit -1
  endif
 endif
else
 ifneq "$(skipmanual)" "yes"
	@echo "*** Cannot rebuild html docs because we are missing the docbook stylesheet."
	@echo "*** Try to install the missing software and reconfigure."
	@echo "*** Run make as 'make skipmanual=yes' to ignore the problem and don't build the docs"
	exit -1
 endif
endif
ifeq "$(skipmanual)" "yes"
	@echo "*** Not building manual because nomanual=yes"
endif

ifdef XML2PO
update-manual: $(addsuffix /solfege.xml,$(addprefix help/,$(USER_MANUAL_LANGUAGES)))
else
update-manual:
	@echo "You have to install xml2po to run 'make update-manual'"
endif

%.png:%.ly
	mkdir -p $(dir $<)out
	 cd $(dir $<) && $(LILYPOND) -o out/ -b eps $(notdir $<)
	mv $(dir $<)out/$(basename $(notdir $<)).eps $(dir $<)out/$(basename $(notdir $<)).ps
	cd $(dir $<)out && ps2eps -f $(basename $(notdir $<)).ps
	$(PYTHON) tools/fix_eps.py $(dir $<)out/$(basename $(notdir $<)).eps
	gs-gpl -dEPSCrop -dGraphicsAlphaBits=2 -dTextAlphaBits=4 -dNOPAUSE -sDEVICE=png16m -sOutputFile="$@" -r96 "$(dir $<)out/$(basename $(notdir $<)).eps" -c quit

uninstall-manual:
	rm -rf /usr/share/omf/solfege
	rm -rf /usr/share/gnome/help/solfege

install-manual: uninstall-manual
	mkdir /usr/share/omf/solfege || true
	cp help/C/solfege.omf /usr/share/omf/solfege
	mkdir -p /usr/share/gnome/help/solfege/C || true
	cp help/C/*.xml /usr/share/gnome/help/solfege/C
