blob: 52136e14b29c473a8f126f87910b64767faa2df2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Makefile for biblatex-nejm.tex
# $Id: Makefile 22 2011-09-06 18:48:21Z marco $
PACKAGE = biblatex-nejm
PDFLATEX = pdflatex
BACKEND = biber
all: pdf clean
pdf: $(PACKAGE).tex
$(PDFLATEX) $(PACKAGE).tex
$(BACKEND) $(PACKAGE)
$(PDFLATEX) $(PACKAGE).tex
$(PDFLATEX) $(PACKAGE).tex
clean:
rm -f *.aux
rm -f *.bbl
rm -f *.bcf
rm -f *.blg
rm -f *.log
rm -f *.out
rm -f *.run.xml
rm -f *.toc
|