# Makefile for translation-guide-windows DOCBASE = translate-windows PRI_LANG = en_US define XMLFILES_template XMLFILES-${1} = ${1}/${DOCBASE}.xml endef ###################################################### define find-makefile-common for d in docs-common ../docs-common ../../docs-common; do \ if [ -f $$d/Makefile.common ]; then echo "$$d/Makefile.common"; break; fi; done endef include $(shell $(find-makefile-common)) ###################################################### # If you want to add additional steps to any of the # targets defined in "Makefile.common", be sure to use # a double-colon in your rule here. For example, to # print the message "FINISHED AT LAST" after building # the HTML document version, uncomment the following # line: #${DOCNAME}/index.html:: # echo FINISHED AT LAST