|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
export PYTEX=$(shell pwd)/pytex/
START = noxxxnote nodraft noblue
END = missing
CLASS = ./sig-alternate.cls
all: wc paper ABSTRACT
open: paper.pdf
@nohup acroread -openInNewWindow paper.pdf 1>/dev/null 2>/dev/null &
figures:
@cd figures ; make
ABSTRACT: $(PYTEX)/bin/clean $(PYTEX)/bin/lib.py abstract.tex
@$(PYTEX)/bin/clean abstract.tex ABSTRACT
# 16 Nov 2010 : GWA : Add other cleaning rules here.
wc: abstract.tex $(PYTEX)/bin/wc $(PYTEX)/bin/lib.py
@$(PYTEX)/bin/wc abstract.tex -
clean: rulesclean
@rm -f ABSTRACT
include $(PYTEX)/make/Makerules
spellcheck: .spellcheck | silent
.spellcheck: $(PAPER_TEXFILES) .okwords
@hunspell -t -l -p $(PWD)/.okwords $(PAPER_TEXFILES) | sort -f | uniq | tee badwords && touch .spellcheck
silent:
@:
|