-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMakefile
54 lines (36 loc) · 1.78 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
all: bug_list.html contributor-list.html faq.html release_notes improvement.html index err coding
bug_list.html: bug_list.txt
asciidoc -a toc bug_list.txt
contributor-list.html: contributor-list.txt
asciidoc -a toc contributor-list.txt
faq.html: faq.txt
asciidoc -a toc faq.txt
release_notes: release_notes.txt release_notes-3.12.1.txt lapack-3.12.1.txt
asciidoc release_notes-3.12.1.txt
cp release_notes-3.12.1.txt release_notes.txt
asciidoc release_notes.txt
asciidoc -a toc lapack-3.12.1.txt
scp release_notes-3.12.1.html release_notes-3.12.1.txt release_notes.html release_notes.txt [email protected]:websites/netlib/lapack
scp lapack-3.12.1.html lapack-3.12.1.txt [email protected]:websites/netlib/lapack
improvement.html: improvement.txt
asciidoc improvement.txt
index: index.txt
asciidoc -a toc -a toc-title="Menu" index.txt
scp index.html index.txt [email protected]:websites/netlib/lapack
err: Errata/index2.txt Errata/index2.txt Errata/errata_scalapack.txt
@(cd Errata && make && cd ..)
lawn: lawns/index.txt
@(cd lawns && make && cd ..)
scp lawns/*.txt lawns/*.html lawns/lawn.bib [email protected]:websites/netlib/lapack/lawns
coding: lapack-coding/program-style.txt
@(cd lapack-coding && make && cd ..)
publish:
scp *.txt *.html zoot.icl.utk.edu:/nfs/www/netlib/lapack
scp Errata/*.txt Errata/*.html [email protected]:/nfs/www/netlib/lapack/Errata
scp lapack-coding/*.txt lapack-coding/*.html [email protected]:/nfs/www/netlib/lapack-dev/lapack-coding
pub_bug: bug_list.html err
scp bug_list.* zoot.icl.utk.edu:/nfs/www/netlib/lapack
scp Errata/*.txt Errata/*.html [email protected]:/nfs/www/netlib/lapack/Errata
scp -r Errata/vrac/* [email protected]:/nfs/www/netlib/lapack/Errata/vrac
clean:
rm -rf *.html Errata/*.html lapack-coding/*.html