paper-TPCTC-PocketData/Makefile

35 lines
709 B
Makefile
Raw Normal View History

2015-06-18 17:54:45 -04:00
export PYTEX=$(shell pwd)/pytex/
2015-06-18 18:42:43 -04:00
START = xxxnote nodraft noblue
2015-06-18 17:54:45 -04:00
END = missing
CLASS = $(PWD)/llncs.cls
all: 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 sections/0-abstract.tex
@$(PYTEX)/bin/clean sections/0-abstract.tex ABSTRACT
# 16 Nov 2010 : GWA : Add other cleaning rules here.
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:
@:
.PHONY:
spellcheck