Commit 76051420 authored by nimrod's avatar nimrod
Browse files

Set all as the default target.

parent 3336e80c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -12,6 +12,8 @@ PAPERSIZE = A4

.PHONY: all clean publish test

all: resume.html resume.pdf resume.docx resume.odt

resume.html: $(RESUME)
	pandoc -s -t html5 --email-obfuscation=none $(RESUME) -o resume.html

@@ -24,8 +26,6 @@ resume.docx: $(RESUME)
resume.odt: $(RESUME)
	pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.odt

all: resume.html resume.pdf resume.docx resume.odt

clean:
	rm -f resume.html resume.pdf resume.docx resume.odt *.log