mirror of
https://github.com/expressjs/expressjs.com.git
synced 2026-02-26 02:54:58 +00:00
20 lines
231 B
Makefile
20 lines
231 B
Makefile
|
|
JADE = ./node_modules/.bin/jade
|
|
|
|
HTML = index.html \
|
|
api.html \
|
|
guide.html \
|
|
applications.html \
|
|
community.html \
|
|
faq.html
|
|
|
|
docs: $(HTML)
|
|
|
|
%.html: %.jade
|
|
$(JADE) --path $< < $< > $@
|
|
|
|
clean:
|
|
rm -f *.html
|
|
|
|
.PHONY: docs clean
|