Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. FILES = 1ch.md 2ch.md 3References.md
  2.  
  3.  
  4. all:
  5. pandoc -N \
  6. --template=tesis.latex \
  7. --filter pandoc-citeproc \
  8. --chapters $(FILES) metadata.yaml \
  9. -f markdown -o out.pdf
  10. clean:
  11. rm out.pdf
  12.  
  13. # Prevent make from getting confused by an actual file called clean:
  14.  
  15. .PHONY: clean
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement