Fix: add dependencies

This commit is contained in:
ECAILLE Fabrice (externe)
2017-05-04 10:26:11 +02:00
parent 3331ead68a
commit e2277667c5
582 changed files with 130905 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
VERSION=8.4
default: highlight/build
@cp -f highlight/build/highlight.* .
@cp -f highlight/src/styles/* styles
@du -hs highlight.*
highlight/build: highlight
@cd highlight && git fetch && git checkout $(VERSION)
@cd highlight && npm install && node tools/build.js
highlight:
@git clone git://github.com/isagalaev/highlight.js.git $@
clean:
@rm -rf highlight/build
.PHONY: default