1234567891011121314151617181920212223242526272829 |
- # You want latexmk to *always* run, because make does not have all the info.
- # Also, include non-file targets in .PHONY so they are run regardless of any
- # file of the given name existing.
- .PHONY: proceedings.pdf all clean
- # The first rule in a Makefile is the one executed by default ("make"). It
- # should always be the "all" rule, so that "make" and "make all" are identical.
- all: proceedings.pdf
- # CUSTOM BUILD RULES
- # In case you didn't know, '$@' is a variable holding the name of the target,
- # and '$<' is a variable holding the (first) dependency of a rule.
- # "raw2tex" and "dat2tex" are just placeholders for whatever custom steps
- # you might have.
- %.tex: %.raw
- ./raw2tex $< > $@
- %.tex: %.dat
- ./dat2tex $< > $@
- proceedings.pdf: proceedings.tex
- rubber -v proceedings.tex
- clean:
- rubber --clean proceedings.tex
|