diff --git a/.gitignore b/.gitignore
index 111119aba90bc21a5454ba63f9b58a94afcf0f35..7f454a990a854a8e5184a784a00d882cef79c378 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,8 @@ resume.html
 resume.pdf
 resume.docx
 resume.odt
+*.log
+*.swp
+*.swo
+~*
+*~
diff --git a/Makefile b/Makefile
index 0396c5dbafb22b114e80e4ca9efd5d3ce8d7ec1b..425417e4869a111ea2c3b38f37b202d729dfb6b0 100644
--- a/Makefile
+++ b/Makefile
@@ -8,19 +8,16 @@ html: $(RESUME)
 	pandoc -s -t html5 --email-obfuscation=none -c resume.css $(RESUME) -o resume.html
 
 pdf: $(RESUME)
-	pandoc $(RESUME) -c $(CSS) -V papersize=$(PAPERSIZE) -o resume.pdf
+	pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.pdf
 
 docx: $(RESUME) html
-	pandoc $(RESUME) -c $(CSS) -V papersize=$(PAPERSIZE) -o resume.docx
+	pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.docx
 
 odt: $(RESUME) html
-	pandoc $(RESUME) -c $(CSS) -V papersize=$(PAPERSIZE) -o resume.odt
+	pandoc $(RESUME) -c $(CSS) -o resume.odt
 
 clean:
 	rm resume.html resume.pdf resume.docx resume.odt
 
 publish: all
-	rsync -az --exclude="$(RESUME)" --exclude="Makefile" --exclude="resume.css" ./ www.shore.co.il:/var/www/htdocs/www.shore.co.il/resume
-
-push:
-	git push --all gitweb
+	rsync -az --exclude="Makefile" --exclude="resume.css" ./ www.shore.co.il:/var/www/htdocs/www.shore.co.il/resume
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000000000000000000000000000000000000..27759aacc6fa4238f85d2143848398cf32743fdf
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,7 @@
+Nimrod Adar's resume
+====================
+
+My resume (in ReStructuredText) and infrastructure for creating PDF, HTML, ODT
+and Microsoft Word docx versions. Also upload to my web server.
+
+To use install pandoc and rsync (for publishing).