Guest User

Untitled

a guest
Mar 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. .SUFFIXES :
  2. .SUFFIXES : .txt .html .tex .pdf
  3.  
  4. # You don't need to add your filename here anymore.
  5. OUTPUT1=$(patsubst %.txt, %.html, $(wildcard *.txt))
  6. OUTPUT2=$(patsubst %.tex, %.pdf, $(wildcard *.tex))
  7.  
  8. all: $(OUTPUT1) $(OUTPUT2)
  9.  
  10. .txt.html:
  11. perl Markdown.pl < $< > $@
  12.  
  13. .tex.pdf:
  14. touch $@
  15. if test \! -w $@; then chmod u+w $@; fi
  16. pdflatex $<
  17. tfpt online $@
  18.  
  19. clean:
  20. rm -f $(OUTPUT1) $(OUTPUT2)
  21.  
  22. tidy:
  23. rm -f *.txt~ *.tex~ *.aux *.log *.out
Add Comment
Please, Sign In to add comment