summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOlivier Gayot <og@satcom1.com>2016-07-19 17:36:58 +0200
committerOlivier Gayot <og@satcom1.com>2016-07-19 17:41:01 +0200
commit5c88bb682218dbdd50de48ed453e6464d641ba20 (patch)
tree0e4c7598a6145f50f3637da436d49f70b3ae6410 /Makefile
parent91ff1929ec3107f781741bea937861883c2e6414 (diff)
added Makefile to build and clean the website
Signed-off-by: Olivier Gayot <og@satcom1.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5c7f7e9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+all: build
+
+build:
+ nikola build
+
+clean:
+ nikola clean
+
+mrproper: clean
+ $(RM) .doit.db
+
+.PHONY: all build clean mrproper