Initial check-in

This commit is contained in:
Diederik de Groot
2017-11-13 01:43:48 +01:00
commit 82b5aadc13
1623 changed files with 350739 additions and 0 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
SHELL := /usr/bin/env bash
PIP := /usr/bin/env pip
PYTHON := /usr/bin/env python
.PHONY: bootstrap clean
.DEFAULT_GOAL := all
all: .requirements_satisfied
@$(PYTHON) generate.py
bootstrap:
@$(PIP) install --user -r requirements.txt
.requirements_satisfied:
$(MAKE) bootstrap
@touch $@
clean:
@find . -type f -name '*.pyc' -delete
@find . -type f -name '*~' -delete
@find . -type f -name '*.bak' -delete
@find . -type f -name '.requirements_satisfied' -delete