File: Makefile

package info (click to toggle)
hdf5-filter-plugin 0.0~git20221111.49e3b65-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,848 kB
  • sloc: ansic: 14,374; sh: 11,445; cpp: 1,463; makefile: 100; python: 19; xml: 6
file content (19 lines) | stat: -rw-r--r-- 357 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
master_src := techrequirements.tex
document := $(master_src:.tex=.pdf)
auxfile := $(master_src:.tex=.aux)
bibliography := references.bib

all: $(document)

$(document): $(master_src) $(bibliography)
	pdflatex $(master_src)
	bibtex $(auxfile)
	pdflatex $(master_src)
	pdflatex $(master_src)

.PHONY: clean all

clean:
	rm -rf $(document)
	rm -rf $(auxfile)