Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sdasgup3 committed May 17, 2018
1 parent 1cddde3 commit 476cbbc
Show file tree
Hide file tree
Showing 11 changed files with 3,252 additions and 0 deletions.
Binary file not shown.
17 changes: 17 additions & 0 deletions docs/reports/papers/asplos2019/source/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
PAPER = template
TEX = $(wildcard *.tex)
BIB = references.bib
FIGS = $(wildcard figures/*.pdf figures/*.png graphs/*.pdf graphs/*.png)

.PHONY: all clean

$(PAPER).pdf: $(TEX) $(BIB) $(FIGS) jpaper.cls
echo $(FIGS)
pdflatex $(PAPER)
bibtex $(PAPER)
pdflatex $(PAPER)
pdflatex $(PAPER)

clean:
rm -f *.aux *.bbl *.blg *.log *.out $(PAPER).pdf

Loading

0 comments on commit 476cbbc

Please sign in to comment.