diff options
author | Karl Berry <karl@freefriends.org> | 2019-01-27 22:48:57 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-01-27 22:48:57 +0000 |
commit | e89a762d6eff1447eae6d9f96e8c28c42833c794 (patch) | |
tree | b5300b18cea61f6a0342c0e83413bb091a0b1fe5 /Master/texmf-dist/source | |
parent | 28cba6f445ffb947f79b93b3329f919c95ed39cc (diff) |
biblatex-nejm
git-svn-id: svn://tug.org/texlive/trunk@49839 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r-- | Master/texmf-dist/source/latex/biblatex-nejm/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/biblatex-nejm/Makefile b/Master/texmf-dist/source/latex/biblatex-nejm/Makefile new file mode 100644 index 00000000000..52136e14b29 --- /dev/null +++ b/Master/texmf-dist/source/latex/biblatex-nejm/Makefile @@ -0,0 +1,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 + |