mirror of https://gitlab.com/QEF/q-e.git
33 lines
854 B
Makefile
33 lines
854 B
Makefile
VERSION := $(shell awk -F\' '/version_number/{print $$2}' ../../include/qe_version.h )
|
|
HELPDOC = ../../dev-tools/helpdoc -version $(VERSION)
|
|
|
|
doc: all
|
|
all: defs
|
|
|
|
clean:
|
|
- rm -f INPUT_*.html INPUT_*.txt INPUT_*.xml
|
|
- rm -rf input_xx.xsl
|
|
- rm -rf ../../Doc/INPUT_HP.*
|
|
|
|
defs: input_xx.xsl INPUT_HP.txt link_on_main_doc
|
|
|
|
input_xx.xsl:
|
|
@(if test ! -f input_xx.xsl; then \
|
|
(if test -f ../../dev-tools/input_xx.xsl; then \
|
|
(ln -sf ../../dev-tools/input_xx.xsl input_xx.xsl) ; \
|
|
else \
|
|
echo ; \
|
|
echo " Sorry, can not find input_xx.xsl html style file !!!" ; \
|
|
echo ; exit 1 ; \
|
|
fi) ; fi)
|
|
|
|
INPUT_HP.html: %.html: %.def input_xx.xsl
|
|
$(HELPDOC) $<
|
|
INPUT_HP.txt: %.txt: %.def input_xx.xsl
|
|
$(HELPDOC) $<
|
|
|
|
link_on_main_doc:
|
|
-( cd ../../Doc ; ln -fs ../HP/Doc/INPUT_HP.html . ; \
|
|
ln -fs ../HP/Doc/INPUT_HP.xml . ; \
|
|
ln -fs ../HP/Doc/INPUT_HP.txt . )
|