doc-src/isac/jrocnik/Makefile
author Jan Rocnik <jan.rocnik@student.tugraz.at>
Tue, 27 Sep 2011 11:05:00 +0200
branchdecompose-isar
changeset 42293 b24574463e1a
child 42378 6d1f4e7870b1
permissions -rwxr-xr-x
before merge
     1 ## targets
     2 
     3 default: thesis clean
     4 all: thesis docu clean
     5 thesis: thesis clean
     6 docu: docu clean
     7 
     8 
     9 ## dependencies
    10 
    11 
    12 ## settings
    13 
    14 LATEX = latex
    15 PDFLATEX = pdflatex
    16 BIBTEX = bibtex
    17 RAIL = rail -a
    18 SEDINDEX = ./sedindex
    19 FIXBOOKMARKS = perl -pi fixbookmarks.pl
    20 
    21 DEFAULT_GARBAGE = *.aux *.log *.toc *.idx *.rai *.rao *.bbl *.ind *.ilg *.blg *.out *.lof
    22 DEFAULT_OUTPUT = *.dvi *.pdf *.ps
    23 GARBAGE =
    24 OUTPUT =
    25 
    26 ## special targets
    27 
    28 .DELETE_ON_ERROR:
    29 
    30 ## actions
    31 
    32 nothing:
    33 
    34 clean:
    35 	@rm -f $(DEFAULT_GARBAGE) $(GARBAGE)
    36 
    37 mrproper:
    38 	@rm -f $(DEFAULT_GARBAGE) $(DEFAULT_OUTPUT) $(GARBAGE) $(OUTPUT)
    39 
    40 THESIS_NAME = bakkarbeit_jrocnik
    41 THESIS_FILES = bakkarbeit_jrocnik.tex
    42 
    43 DOCU_NAME = Inverse_Z_Transform/doc/Inverse_Z_Transform
    44 DOCU_FILES = Inverse_Z_Transform/doc/root.tex 
    45 
    46 thesis: $(THESIS_NAME).pdf
    47 
    48 $(THESIS_NAME).pdf: $(THESIS_FILES)
    49 	$(PDFLATEX) $(THESIS_NAME)
    50 	$(BIBTEX) $(THESIS_NAME)
    51 	$(PDFLATEX) $(THESIS_NAME)
    52 	$(PDFLATEX) $(THESIS_NAME)
    53   
    54 docu: