blog/themes/typing/makefile

18 lines
502 B
Makefile
Raw Normal View History

2018-09-10 09:21:59 +00:00
.PHONY: css
css:
./node_modules/.bin/postcss --use postcss-import --use precss --use autoprefixer --use cssnano source/css/source.css --output source/css/typing.css
.PHONY: copy
copy:
mkdir -p ../hexo-theme-unit-test/themes/typing
cp -r ./layout ../hexo-theme-unit-test/themes/typing/
cp -r ./source ../hexo-theme-unit-test/themes/typing/
cp -r ./languages ../hexo-theme-unit-test/themes/typing/
cp -r ./_config.yml ../hexo-theme-unit-test/themes/typing/
.PHONY: all
all:
make css
make copy