projects
/
cdsc_tex.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added a gitignore file to ignore the extra files generated
[cdsc_tex.git]
/
letter_template
/
Makefile
1
#!/usr/bin/make
2
3
all: $(patsubst %.tex,%.pdf,$(wildcard *.tex))
4
pdf: all
5
6
%.pdf: %.tex
7
rubber -fd $<
8
9
clean:
10
rubber -d --clean *.tex
11
rm -f *.tmp
12
rm -f figures/*.pdf
13
14
viewpdf: all
15
evince *.pdf
16
17
spell:
18
aspell -c -t --tex-check-comments -b text.tex
19
20
21
.PHONY: clean all
Community Data Science Collective
||
Want to submit a patch?