TARGET = handout DEPS = handout.tex PDF = $(TARGET).pdf HTML = $(TARGET)/$(TARGET).html all: pdf html pdf: $(PDF) html: $(HTML) $(PDF): $(DEPS) pdflatex $(TARGET) $(HTML): $(DEPS) latex2html -local_icons $(TARGET) clean: rm -rf $(PDF) $(HTML) $(TARGET) *.aux *.log *.out