GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
nigel.stanger
/
LaTeX
Browse code
Updated to reflect modified directory structure.
master
1 parent
4257c69
commit
9b0b17b8e7e5b00ed5ae1b8e8a729c2a2d226991
Nigel Stanger
authored
on 12 Jun 2013
Patch
Showing
1 changed file
Makefile
Ignore Space
Show notes
View
Makefile
################################################################################ # # $Id$ # ################################################################################ SHELL = /bin/sh # Depending on the permissions of your TEXMF directory, you may need to # do a 'sudo make install' # Set this to whatever it should be, e.g., /usr/local/texmf or whatever. # Probably better to install these in your own personal TEXMF tree so that # they don't get wiped out by updates. # TEXMFHOME = LATEX = $(TEXMFHOME)/tex/latex install: @mkdir -p $(LATEX)/beamer/themeOtago @mkdir -p $(LATEX)/beamer/themeNZCS cp beamerthemes/beamerthemeOtago/*.sty $(LATEX)/beamer/themeOtago cp beamerthemes/beamerthemeOtago/OU-Logo-Colour.* $(LATEX)/beamer/themeOtago cp beamerthemes/beamerthemenzcs/beamerthemenzcs.sty $(LATEX)/beamer/themeNZCS cp beamerthemes/beamerthemenzcs/NZCSbanner.png $(LATEX)/beamer/themeNZCS @mkdir -p $(LATEX)/OULogo (cd OULogo; cp *.eps *.pdf *.jpg $(LATEX)/OULogo) @mkdir -p $(LATEX)/listings cp listings/lstlang*.sty $(LATEX)/listings @mkdir -p $(LATEX)/lectures (cd lectures; cp *.cls *.sty $(LATEX)/lectures) @texhash
################################################################################ # # $Id$ # ################################################################################ SHELL = /bin/sh # Depending on the permissions of your TEXMF directory, you may need to # do a 'sudo make install' # Set this to whatever it should be, e.g., /usr/local/texmf or whatever. # Probably better to install these in your own personal TEXMF tree so that # they don't get wiped out by updates. # TEXMFHOME = LATEX = $(TEXMFHOME)/tex/latex install: @mkdir -p $(LATEX)/beamer/themeOtago @mkdir -p $(LATEX)/beamer/themeNZCS cp beamerthemeOtago/*.sty $(LATEX)/beamer/themeOtago cp beamerthemeOtago/OU-Logo-Colour.* $(LATEX)/beamer/themeOtago cp beamerthemenzcs/beamerthemenzcs.sty $(LATEX)/beamer/themeNZCS cp beamerthemenzcs/NZCSbanner.png $(LATEX)/beamer/themeNZCS @mkdir -p $(LATEX)/OULogo (cd OULogo; cp *.eps *.pdf *.jpg $(LATEX)/OULogo) @mkdir -p $(LATEX)/listings cp listings/lstlang*.sty $(LATEX)/listings @mkdir -p $(LATEX)/local cp relalg.sty coursehandbook.cls $(LATEX)/local @mkdir -p $(LATEX)/lectures (cd lectures; cp *.cls *.sty $(LATEX)/lectures) @texhash
Show line notes below