Newer
Older
LaTeX / Makefile
nstanger on 25 Mar 2010 1 KB - Added course handbook class.
################################################################################
#
# File: $Source$
#
# $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.
# TEXMF_INSTALL =
LATEX = $(TEXMF_INSTALL)/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 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