blob: 3aef6519b5320d08e0c46b09c6a163566b8bd50c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Makefile for biblatex-nejm.tex
# $Id: Makefile 16 2011-08-31 13:28:39Z marco $
PACKAGE = biblatex-nejm
PDFLATEX = pdflatex
BACKEND = biber
pdf: $(PACKAGE).tex
$(PDFLATEX) $(PACKAGE).tex
$(BACKEND) $(PACKAGE)
$(PDFLATEX) $(PACKAGE).tex
$(PDFLATEX) $(PACKAGE).tex
clean:
find -type f ! -iname "*.tex" ! -iname "*.pdf" ! -iname "*.cbx" ! -iname "*.bbx" ! -iname "README" ! -iname "Makefile" -exec rm '{}' +
all: pdf clean
|