blob: 300561132fc848ff7dfca455ae625c31b54e9325 (
plain)
1
2
3
4
5
6
7
8
9
|
TARGET = fc-normalization-rta
$(TARGET).pdf: $(TARGET).tex $(OTT_TEX)
latex -output-format=pdf $<
latex -output-format=pdf $<
.PHONY: clean
clean:
rm -f $(TARGET).pdf $(TARGET).tex $(OTT_TEX) *.aux *.fdb_latexmk *.log *.fls
|