############################################################################### # Makefile for RHLP docs project # Created by: Tammy Fox # Last edited by: Tommy Reynolds # WARNING: need passivetex 1.24 for pdf generation to work # License: GPL # Copyright 2003 Tammy Fox, Red Hat, Inc. # Copyright 2005 Tommy Reynolds, MegaCoder.com ############################################################################### LANGUAGES = en DOCBASE = stateless-linux-HOWTO XMLEXTRAFILES-en = ###################################################### 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