pinout.vvzero.com/Makefile

16 lines
231 B
Makefile
Raw Normal View History

2015-11-14 07:16:37 +08:00
LANG ?= en
2015-11-08 04:08:35 +08:00
2015-11-14 07:16:37 +08:00
LANG := $(subst -, ,$(LANG))
LANG := $(subst _, ,$(LANG))
LANG := $(firstword $(LANG))
2015-02-25 01:28:00 +08:00
all:
2015-11-08 04:08:35 +08:00
./generate-html.py $(LANG)
cp -r resources output/$(LANG)/
2015-03-22 01:27:02 +08:00
clean:
rm -rf output/$(LANG)/*
2015-02-25 01:28:00 +08:00
2015-11-08 04:34:10 +08:00
serve: all
2015-11-08 04:08:35 +08:00
./serve.py $(LANG)