From 7c3d77247f39cb45bc8cc2b02c9cc01231de909a Mon Sep 17 00:00:00 2001 From: Siddharth Ravikumar Date: Fri, 15 Jan 2016 12:24:50 -0500 Subject: skeleton of combox report ready. --- report/Makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 report/Makefile (limited to 'report/Makefile') diff --git a/report/Makefile b/report/Makefile new file mode 100644 index 0000000..3317a32 --- /dev/null +++ b/report/Makefile @@ -0,0 +1,28 @@ +#!/usr/bin/make +# +# combox - report +# +# Makefile +# +# By Siddharth Ravikumar +# +# No rights reserved. Dedicated to Public Domain. +# + +PDF = combox-report.pdf +SRC = combox.tex +DVI = combox.dvi + +all: $(PDF) + @evince $(PDF) & + +$(PDF): $(DVI) + @dvipdf $< $@ + +$(DVI): $(SRC) + @latex $<; latex $<; latex $< + +clean: + rm -f $(PDF) *.aux *.dvi *.log *~ + +.PHONY: clean all -- cgit v1.2.3