init the MWD writeup

This commit is contained in:
2019-11-12 16:04:31 -06:00
parent ba4c453e7f
commit 2e3caf4d63
3 changed files with 74 additions and 0 deletions

15
mwd_gpu/Makefile Normal file
View File

@@ -0,0 +1,15 @@
DOC=mwdGpu
INPUT=$(DOC).tex
TARGET=$(DOC).pdf
TEX=pdflatex -shell-escape
BIB=bibtex
default: $(TARGET)
$(TARGET): $(INPUT) Makefile
# $(TEX) $< && $(BIB) $(DOC) && $(TEX) $< && $(TEX) $<
$(TEX) $< && $(TEX) $<
clean:
rm -f $(DOC).{pdf,out,aux,log}
rm -f *.{pdf,out,aux,log,bbl,blg}