Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.52 KB

Makefile.am

File metadata and controls

41 lines (30 loc) · 1.52 KB
 
Sep 28, 2011
Sep 28, 2011
1
2
3
#
SUBDIRS = styles inc images
Nov 3, 2011
Nov 3, 2011
4
CONV = "$(srcdir)/html.py"
Sep 28, 2011
Sep 28, 2011
5
Jan 3, 2019
Jan 3, 2019
6
FTR_PAGES = csd.html charset.html token.html pkcs11.html tpm.html features.html gui.html nonroot.html hip.html tncc.html
Feb 20, 2021
Feb 20, 2021
7
START_PAGES = building.html connecting.html manual.html vpnc-script.html
Oct 11, 2018
Oct 11, 2018
8
INDEX_PAGES = changelog.html download.html index.html packages.html platforms.html licence.html
May 5, 2021
May 5, 2021
9
PROTO_PAGES = protocols.html anyconnect.html array.html fortinet.html f5.html globalprotect.html juniper.html pulse.html
Jan 23, 2022
Jan 23, 2022
10
11
CONTR_PAGES = contribute.html mitm.html
TOPLEVEL_PAGES = mail.html
Sep 28, 2011
Sep 28, 2011
12
Jan 23, 2022
Jan 23, 2022
13
ALL_PAGES = $(FTR_PAGES) $(START_PAGES) $(INDEX_PAGES) $(TOPLEVEL_PAGES) $(PROTO_PAGES) $(CONTR_PAGES)
Sep 28, 2011
Sep 28, 2011
14
Apr 11, 2012
Apr 11, 2012
15
html_DATA = $(ALL_PAGES)
Sep 28, 2011
Sep 28, 2011
16
17
.xml.html:
Nov 7, 2011
Nov 7, 2011
18
$(PYTHON) $(CONV) -d $(srcdir) $< > $@ || (rm $@; exit 1)
Sep 28, 2011
Sep 28, 2011
19
20
21
22
clean-local:
rm -f $(ALL_PAGES) openconnect.8.inc
Nov 3, 2011
Nov 3, 2011
23
$(ALL_PAGES): menu1.xml $(srcdir)/inc/*.tmpl
Sep 28, 2011
Sep 28, 2011
24
25
$(FTR_PAGES): menu2-features.xml
$(START_PAGES): menu2-started.xml
Feb 1, 2015
Feb 1, 2015
26
$(PROTO_PAGES): menu2-protocols.xml
Jan 23, 2022
Jan 23, 2022
27
$(CONTR_PAGES): menu2-contribute.xml
Sep 28, 2011
Sep 28, 2011
28
29
30
$(MAIN_PAGES): menu2.xml
manual.html: openconnect.8.inc
Jun 22, 2012
Jun 22, 2012
31
32
33
34
$(top_builddir)/openconnect.8: $(top_srcdir)/openconnect.8.in $(top_builddir)/config.status
cd $(top_builddir) && $(SHELL) ./config.status openconnect.8
Mar 7, 2014
Mar 7, 2014
35
36
# If this command line ever changes significantly, so should the
# corresponding autoconf check.
Jun 22, 2012
Jun 22, 2012
37
openconnect.8.inc: $(top_builddir)/openconnect.8
Sep 13, 2016
Sep 13, 2016
38
39
$(GROFF) -t -K UTF-8 -mandoc -Txhtml $? | \
sed -e 's/&minus;/-/g' -e '1,/<body>/d' -e '/<\/body>/,$$d' > $@
Sep 28, 2011
Sep 28, 2011
40
Jun 8, 2012
Jun 8, 2012
41
EXTRA_DIST = $(patsubst %.html,%.xml,$(ALL_PAGES)) $(srcdir)/menu1.xml $(srcdir)/menu2*.xml $(srcdir)/html.py