git-quick-start

An introduction to Git version control
git clone git://src.adamsgaard.dk/git-quick-start
Log | Files | Refs | README | LICENSE

commit c962cd917db62269156b9c66e23b83a18ce26a1f
parent bd2103dd5aa03d7e4cfc5b4507d121c31c672485
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Sat,  7 Sep 2019 06:45:40 +0200

Clean up Makefile

Diffstat:
MMakefile | 4----
1 file changed, 0 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,6 +1,4 @@ SRC=$(wildcard *.tex) -#SRC=BSFmaster.tex -#BIB=iceStreams.bib BIB= DEPS=$(wildcard *.tex) PDFS=$(SRC:.tex=.pdf) @@ -9,8 +7,6 @@ all: ${PDFS} %.pdf: %.tex $(BIB) $(DEPS) pdflatex $< - #bibtex $< - #pdflatex $< pdflatex $< .PHONY: clean