ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/oopsePaper/currMake
Revision: 714
Committed: Sun Aug 24 02:36:10 2003 UTC (20 years, 11 months ago) by mmeineke
File size: 278 byte(s)
Log Message:
overhauled the makefile to build oopse.tex from the infiles rather than mess with includes.
Also renamed header and footer to preamble and bibEnd respectively.
make current has been replaced with currMake to tke a look at a single tex section.

File Contents

# User Rev Content
1 mmeineke 712 #!/bin/bash
2    
3 mmeineke 713 LBIN=/usr/local/teTeX/bin
4 mmeineke 712
5 mmeineke 714 base=mule
6 mmeineke 712
7 mmeineke 714 /bin/rm -f $base.*
8 mmeineke 712
9 mmeineke 714 cat header.tex > $base.tex
10     cat $1 >> $base.tex
11     cat footer.tex >> $base.tex
12 mmeineke 712
13 mmeineke 714 $LBIN/latex $base
14     $LBIN/bibtex $base
15     $LBIN/latex $base
16     $LBIN/latex $base
17 mmeineke 712
18 mmeineke 714 $LBIN/dvips -o $base.ps $base.dvi
19    
20     ghostview $base.ps

Properties

Name Value
svn:executable *