File tree 8 files changed +2321
-17
lines changed
8 files changed +2321
-17
lines changed Original file line number Diff line number Diff line change
1
+ * .o
2
+ * .d
3
+ * ~
4
+ \# *
5
+ * .ind
6
+ * .out
7
+ * .cd
8
+ * .class
9
+ * .jar
10
+ * .a
11
+ * .so
12
+ unpack_base.h
13
+ json_unpack_base.h
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ PROJECT_NAME = Classdesc
31
31
# This could be handy for archiving the generated documentation or
32
32
# if some version control system is used.
33
33
34
- PROJECT_NUMBER =
34
+ @INCLUDE = Doxyversion
35
35
36
36
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
37
37
# base path where the generated documentation will be put.
Original file line number Diff line number Diff line change @@ -169,3 +169,12 @@ VERSION=$(shell git describe)
169
169
170
170
dist :
171
171
git archive --format=tar.gz --prefix=classdesc-$(VERSION ) / HEAD -o /tmp/classdesc-$(VERSION ) .tar.gz
172
+
173
+ # install documentation on SourceForge
174
+ DOCPREFIX =web.sf.net:/home/project-web/classdesc/htdocs/doc
175
+
176
+ install-doc :
177
+ doxygen
178
+ -cd doc; sh Makedoc
179
+ rsync -e ssh -r -z --progress --delete doc/classdesc $(DOCPREFIX )
180
+ rsync -e ssh -r -z --progress --delete html/* $(DOCPREFIX ) /doxygen
Original file line number Diff line number Diff line change 1
- . /usr/local/share/aegis/profile
2
- aecp classdesc.ps
3
1
rm *~ *.aux *.dvi *.log *.blg *.toc *.lof *.ilg *.idx
4
2
latex classdesc
5
3
makeindex classdesc.idx
6
4
bibtex classdesc
7
5
latex classdesc
8
6
latex classdesc
9
7
dvips classdesc
10
- TMP=/tmp/eco-doc$$
11
- mkdir $TMP
12
- aecp classdesc
13
- rm -rf classdesc
14
- latex2html classdesc
15
- rm -rf $TMP
8
+ git rm -rf classdesc
9
+ latex2html -local_icons classdesc
16
10
rm *~ *.aux *.dvi *.log *.blg *.toc *.lof *.ilg *.idx
17
- # remove extraneous file from repository
18
- aegis -list -terse project_files|grep doc/classdesc/|while read nm; do
19
- if [ ! -f ../$nm ]; then
20
- aecpu ../$nm
21
- aerm -no_whiteout ../$nm
22
- fi
23
- done
24
- aenf classdesc
11
+
12
+ for i in classdesc/*; do git add $i; done
13
+ git commit -m "Making doc consistent in git"
Original file line number Diff line number Diff line change 20
20
21
21
\begin {document }
22
22
\maketitle
23
+ \begin {center }
24
+ \input {version.tex }
25
+ \end {center }
23
26
\tableofcontents
24
27
\input {classdesc-common }
25
28
You can’t perform that action at this time.
0 commit comments