Makefile: add missing dependency for `www/data'
This commit is contained in:
parent
1bb38796ad
commit
295f0d024a
5
Makefile
5
Makefile
|
@ -29,5 +29,8 @@ release: bindata.go
|
||||||
docs: readme
|
docs: readme
|
||||||
cd www && hugo -d ../docs
|
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
|
cat README.md | python -c 'import json,sys; print(json.dumps({"content": sys.stdin.read()}))' > www/data/readme.json
|
||||||
|
|
||||||
|
www/data:
|
||||||
|
mkdir -p $@
|
||||||
|
|
Loading…
Reference in New Issue