summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/hepthesis/Makefile
blob: 00fe86daab6c59514e8ce1623b366e372182b945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
HT := hepthesis
.PHONY: all clean check

all: $(HT).tar.gz
	@true

$(HT).tar.gz: README ChangeLog $(HT).pdf example/example.pdf 
	@rm -rf $(HT)
	@mkdir $(HT)
	@cp README TODO ChangeLog Makefile $(HT).pdf $(HT).cls $(HT).tex $(HT)
	@mkdir $(HT)/example
	@cp example/*.pdf example/*.tex example/extrastyles.zip Makefile $(HT)/example
	tar czf $@ $(HT)
	@rm -rf $(HT)

$(HT).pdf: $(HT).tex example/example.pdf 
	(rm -f $(HT).{aux,toc,lof,lot} && pdflatex $(HT).tex && pdflatex $(HT).tex && rm -f $(HT).{aux,toc,lof,lot})

example/example.pdf: force_look
	cd example && $(MAKE) $(MFLAGS)

clean:
	@rm -rf $(HT)
	@rm -f $(HT).tar.gz
	@rm -f $(HT).pdf $(HT).log $(HT).aux $(HT).out $(HT).dvi comment.cut
	cd example && $(MAKE) $(MFLAGS) clean

check: $(HT).tar.gz
	@rm -rf $(HT)
	@tar xzf $(HT).tar.gz
	(cd $(HT) && make $(HT).pdf && make example/example.pdf)

force_look:
	@true