From: Nicolas Iooss Date: Wed, 23 Sep 2015 12:48:48 +0000 (+0200) Subject: Add db/Makefile X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=d9b6e86541d2b5615aa25caab903210e137aa69f;p=vagrant-mail.git Add db/Makefile --- diff --git a/database/Makefile b/database/Makefile new file mode 100644 index 0000000..f83de8d --- /dev/null +++ b/database/Makefile @@ -0,0 +1,10 @@ +PYTHON ?= python +RM ?= rm -f + +all: + $(PYTHON) manage.py syncdb --noinput + +clean: + $(RM) db.sqlite + +.PHONY: all clean