123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #
- SUBDIRS = styles inc images
- CONV = "$(srcdir)/html.py"
- FTR_PAGES = csd.html charset.html token.html pkcs11.html tpm.html features.html gui.html nonroot.html hip.html tncc.html
- START_PAGES = building.html connecting.html manual.html vpnc-script.html
- INDEX_PAGES = changelog.html download.html index.html packages.html platforms.html licence.html
- PROTO_PAGES = protocols.html anyconnect.html array.html fortinet.html f5.html globalprotect.html juniper.html pulse.html
- CONTR_PAGES = contribute.html mitm.html
- TOPLEVEL_PAGES = mail.html
- ALL_PAGES = $(FTR_PAGES) $(START_PAGES) $(INDEX_PAGES) $(TOPLEVEL_PAGES) $(PROTO_PAGES) $(CONTR_PAGES)
- html_DATA = $(ALL_PAGES)
- .xml.html:
- $(PYTHON) $(CONV) -d $(srcdir) $< > $@ || (rm $@; exit 1)
- clean-local:
- rm -f $(ALL_PAGES) openconnect.8.inc
- $(ALL_PAGES): menu1.xml $(srcdir)/inc/*.tmpl
- $(FTR_PAGES): menu2-features.xml
- $(START_PAGES): menu2-started.xml
- $(PROTO_PAGES): menu2-protocols.xml
- $(CONTR_PAGES): menu2-contribute.xml
- $(MAIN_PAGES): menu2.xml
- manual.html: openconnect.8.inc
- $(top_builddir)/openconnect.8: $(top_srcdir)/openconnect.8.in $(top_builddir)/config.status
- cd $(top_builddir) && $(SHELL) ./config.status openconnect.8
- # If this command line ever changes significantly, so should the
- # corresponding autoconf check.
- openconnect.8.inc: $(top_builddir)/openconnect.8
- $(GROFF) -t -K UTF-8 -mandoc -Txhtml $? | \
- sed -e 's/−/-/g' -e '1,/<body>/d' -e '/<\/body>/,$$d' > $@
- EXTRA_DIST = $(patsubst %.html,%.xml,$(ALL_PAGES)) $(srcdir)/menu1.xml $(srcdir)/menu2*.xml $(srcdir)/html.py
|