File: Makefile

package info (click to toggle)
refnx 0.1.53-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 20,848 kB
  • sloc: python: 36,198; cpp: 1,015; ansic: 185; makefile: 181; sh: 129; lisp: 89; xml: 34
file content (13 lines) | stat: -rw-r--r-- 246 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/make -f

TARGET=nelson-prescott-2019.pdf

$(TARGET): manuscript.tex main.bib
	pdflatex $<
	bibtex $(basename $<).aux
	pdflatex $<
	pdflatex $<
	mv manuscript.pdf $@

clean:
	rm -f manuscript.b* manuscript.aux manuscript.log $(TARGET)