#------------------------------------------------------------------------------
# Makefile to make atlas_latex documentation
#------------------------------------------------------------------------------

BASENAME = atlas_latex
TEXLIVE = 2016

.PHONY: clean cleanpdf

atlas_latex:
	make -f ../Makefile BASENAME=$(BASENAME)

texlive:
	make -f ../Makefile texlive BASENAME=$(BASENAME) TEXLIVE=$(TEXLIVE)

clean:
	make -f ../Makefile clean
	
cleanpdf:
	-rm $(BASENAME).pdf

cleanall: clean cleanpdf
