Newer
Older
LaTeX / Makefile
  1. ################################################################################
  2. #
  3. # File: $Source$
  4. #
  5. # $Id$
  6. #
  7. ################################################################################
  8.  
  9. SHELL = /bin/sh
  10.  
  11. # Depending on the permissions of your TEXMF directory, you may need to
  12. # do a 'sudo make install'
  13.  
  14. # Set this to whatever it should be, e.g., /usr/local/texmf or whatever.
  15. # Probably better to install these in your own personal TEXMF tree so that
  16. # they don't get wiped out by updates.
  17. # TEXMF_INSTALL =
  18. LATEX = $(TEXMF_INSTALL)/tex/latex
  19.  
  20.  
  21. install:
  22. @mkdir -p $(LATEX)/beamer/themeOtago
  23. @mkdir -p $(LATEX)/beamer/themeNZCS
  24. cp beamerthemeOtago/*.sty $(LATEX)/beamer/themeOtago
  25. cp beamerthemeOtago/OU-Logo-Colour.* $(LATEX)/beamer/themeOtago
  26. cp beamerthemenzcs/beamerthemenzcs.sty $(LATEX)/beamer/themeNZCS
  27. cp beamerthemenzcs/NZCSbanner.png $(LATEX)/beamer/themeNZCS
  28. @mkdir -p $(LATEX)/OULogo
  29. (cd OULogo; cp *.eps *.pdf *.jpg $(LATEX)/OULogo)
  30.  
  31. @mkdir -p $(LATEX)/listings
  32. cp lstlang*.sty $(LATEX)/listings
  33.  
  34. @mkdir -p $(LATEX)/local
  35. cp relalg.sty $(LATEX)/local
  36.  
  37. @mkdir -p $(LATEX)/lectures
  38. (cd lectures; cp *.cls *.sty $(LATEX)/lectures)
  39.  
  40. @texhash