tMakefile - scibeamer - quickly create scientific presentations using LateX and Beamer
HTML git clone git://src.adamsgaard.dk/scibeamer
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
tMakefile (479B)
---
1 NAME=template
2
3 default: $(NAME).pdf
4
5 edit: $(NAME).tex
6 $(EDITOR) $^
7
8 $(NAME).pdf: $(NAME).aux
9 pdflatex $(NAME).tex
10
11 $(NAME).aux: $(NAME).tex graphics/*
12 pdflatex $(NAME).tex
13
14 view: $(NAME).pdf
15 xdg-open $< &
16
17 clean:
18 $(RM) $(NAME).pdf
19 $(RM) $(NAME).log
20 $(RM) $(NAME).toc
21 $(RM) $(NAME).out
22 $(RM) $(NAME).aux
23 $(RM) $(NAME).bbl
24 $(RM) $(NAME).blg
25 $(RM) $(NAME).eps
26 $(RM) $(NAME).dvi
27 $(RM) $(NAME).nav
28 $(RM) $(NAME).snm
29 $(RM) $(NAME).vrb
30
31 .PHONY: default edit view clean