From 295f0d024ab04540953958e2072dc633173c2c98 Mon Sep 17 00:00:00 2001 From: Christos Kontas Date: Thu, 1 Feb 2018 10:00:51 +0100 Subject: [PATCH] Makefile: add missing dependency for `www/data' --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d2d7d5a..669fd55 100644 --- a/Makefile +++ b/Makefile @@ -29,5 +29,8 @@ release: bindata.go docs: readme cd www && hugo -d ../docs -readme: +readme: www/data cat README.md | python -c 'import json,sys; print(json.dumps({"content": sys.stdin.read()}))' > www/data/readme.json + +www/data: + mkdir -p $@