Browse Source

Cleanup Makefile

Matthias Vogelgesang 8 years ago
parent
commit
27a165efd4
1 changed files with 2 additions and 5 deletions
  1. 2 5
      Makefile

+ 2 - 5
Makefile

@@ -3,17 +3,14 @@ DATA = data/decode/ipecam2.decode.cpu.hist.txt \
 
 .PHONY: all clean
 
-all: idea.pdf paper.pdf
+all: paper.pdf
 
 %.hist.txt: %.raw.txt
 	python data/decode/hist.py $< $@
 
 clean:
-	rm idea.pdf paper.bbl
+	rm -f paper.bbl
 	latexmk -C
 
-idea.pdf: idea.md
-	pandoc -o $@ $<
-
 paper.pdf: paper.tex $(DATA)
 	latexmk -pdflatex='pdflatex -shell-escape' -pdf $<