Add db/Makefile
[vagrant-mail.git] / database / Makefile
diff --git a/database/Makefile b/database/Makefile
new file mode 100644 (file)
index 0000000..f83de8d
--- /dev/null
@@ -0,0 +1,10 @@
+PYTHON ?= python
+RM ?= rm -f
+
+all:
+       $(PYTHON) manage.py syncdb --noinput
+
+clean:
+       $(RM) db.sqlite
+
+.PHONY: all clean