Skip to content

Commit b78bfd2

Browse files
committed
web contents
1 parent e45c1ab commit b78bfd2

34 files changed

+3424
-0
lines changed

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
libssh2*html
2+
libssh2*raw
3+
*~
4+
changes.html
5+
cvs.html
6+
cvs.raw
7+
docs.html
8+
index.html
9+
indexbot.html
10+
indextop.html
11+
license.html
12+
mailbot.html
13+
mailhead.html
14+
mailtop.html
15+
menu.html
16+
snapshots.html
17+
source.html

COPYING

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/home/dast/src/daily-libssh2/libssh2/COPYING

Makefile

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
ROOT=/home/dast/libssh2_html
2+
MAINPARTS= $(ROOT)/doctype.t $(ROOT)/body.t $(ROOT)/footer.t \
3+
$(ROOT)/setup.t menu.t $(ROOT)/css.t
4+
ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/cpp -WWW -Uunix -H -I$(ROOT) -C -V -LL $< $@; chmod a-w+r $@
5+
TXT2PLAIN = /home/dast/bin/txt2plain.pl
6+
7+
all: index.html mailhead.html cvs.html docs.html mailtop.html mailbot.html \
8+
indextop.html indexbot.html menu.html changes.html source.html \
9+
libssh2-vs-libssh.html license.html
10+
cd examples && make
11+
12+
index.html: index.t $(MAINPARTS)
13+
$(ACTION)
14+
15+
libssh2-vs-libssh.html: libssh2-vs-libssh.t $(MAINPARTS)
16+
$(ACTION)
17+
18+
changes.html: changes.t $(MAINPARTS)
19+
$(ACTION)
20+
21+
license.html: license.t $(MAINPARTS) license.txt
22+
$(ACTION)
23+
license.txt: COPYING
24+
$(TXT2PLAIN) < $< > $@
25+
26+
27+
docs.html: docs.t $(MAINPARTS) docmenu.t
28+
$(ACTION)
29+
30+
cvs.html: cvs.t cvs.raw $(MAINPARTS)
31+
$(ACTION)
32+
33+
source.html: source.t $(MAINPARTS)
34+
$(ACTION)
35+
36+
menu.html: menu.t $(MAINPARTS)
37+
$(ACTION)
38+
39+
mailhead.html: mailhead.t $(MAINPARTS)
40+
$(ACTION)
41+
42+
mailtop.html: mailtop.t $(MAINPARTS)
43+
$(ACTION)
44+
45+
mailbot.html: mailbot.t $(MAINPARTS)
46+
$(ACTION)
47+
48+
indextop.html: indextop.t $(MAINPARTS)
49+
$(ACTION)
50+
51+
indexbot.html: indexbot.t $(MAINPARTS)
52+
$(ACTION)
53+
54+
clean:
55+
find . -name "*~" -exec rm {} \;

Makefile.docs

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
ROOT=.
2+
3+
MAINPARTS= $(ROOT)/doctype.t body.t footer.t $(ROOT)/setup.t \
4+
menu.t Makefile docmenu.t css.t
5+
OPTS=-WWW -Uunix -H -C -V -I$(ROOT) -LL
6+
FCPP=/home/dast/bin/fcpp
7+
ACTION=$(FCPP) $(OPTS) $< $@
8+
MAN2HTML=/home/dast/bin/roffit --bare --mandir=docs --hrefdir=.
9+
10+
include doc.mk

body.t

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<body>

0 commit comments

Comments
 (0)