~ubuntu-branches/ubuntu/natty/suitesparse/natty

« back to all changes in this revision

Viewing changes to AMD/Doc/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2006-12-22 10:16:15 UTC
  • Revision ID: james.westby@ubuntu.com-20061222101615-2ohaj8902oix2rnk
Tags: upstream-2.3.1
ImportĀ upstreamĀ versionĀ 2.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#------------------------------------------------------------------------------
 
2
# AMD Makefile for compiling on Unix systems (for GNU or original make)
 
3
#------------------------------------------------------------------------------
 
4
 
 
5
default: dist
 
6
 
 
7
include ../../UFconfig/UFconfig.mk
 
8
 
 
9
#------------------------------------------------------------------------------
 
10
# Remove all but the files in the original distribution
 
11
#------------------------------------------------------------------------------
 
12
 
 
13
clean:
 
14
        - $(RM) $(CLEAN)
 
15
 
 
16
purge: distclean
 
17
 
 
18
distclean: clean
 
19
        - $(RM) *.aux *.bbl *.blg *.log *.toc
 
20
 
 
21
#------------------------------------------------------------------------------
 
22
# Create the User Guide and Quick Start Guide
 
23
#------------------------------------------------------------------------------
 
24
 
 
25
AMD_UserGuide.pdf: AMD_UserGuide.tex AMD_UserGuide.bib
 
26
        pdflatex AMD_UserGuide
 
27
        bibtex AMD_UserGuide
 
28
        pdflatex AMD_UserGuide
 
29
        pdflatex AMD_UserGuide
 
30
 
 
31
dist:  AMD_UserGuide.pdf
 
32
        - $(RM) *.aux *.bbl *.blg *.log *.toc
 
33