File: make.bas

package info (click to toggle)
atlas 3.10.3-13
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 38,316 kB
  • sloc: ansic: 486,789; fortran: 66,209; asm: 7,267; makefile: 1,466; sh: 604
file content (28 lines) | stat: -rw-r--r-- 828 bytes parent folder | download | duplicates (8)
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
#
# xdvi -paper usr
#
@whiledef rt atlas_contrib atlas_devel
@(rt).pdf : @(rt).tex
	pdflatex @(rt) ; pdflatex @(rt)
	rm -f @(rt).aux @(rt).dvi @(rt).log \
              @(rt).toc texput.log
@(rt).ps : @(rt).tex
	latex @(rt) ; latex @(rt) ; \
        dvips -o @(rt).ps @(rt) ; \
	rm -f @(rt).aux @(rt).dvi @(rt).log \
              @(rt).toc texput.log
@endwhile
@whiledef rt cblasqref f77blasqref lapackqref
@(rt)_pdf.ps :
	latex @(rt) ; latex @(rt)
	dvips -P pdf -t letter -t landscape -o $@ @(rt)
@(rt).pdf : @(rt)_pdf.ps
	ps2pdf14 @(rt)_pdf.ps @(rt).pdf
	rm -f @(rt).aux @(rt).dvi @(rt).log \
              @(rt).toc texput.log @(rt)_pdf.ps
@(rt).ps : @(rt).tex
	latex @(rt) ; latex @(rt) ; \
        dvips -tlandscape -o @(rt).ps @(rt) ; \
	rm -f @(rt).aux @(rt).dvi @(rt).log \
              @(rt).toc texput.log
@endwhile