-
Notifications
You must be signed in to change notification settings - Fork 2
/
makefile
32 lines (27 loc) · 1.5 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
.ONESHELL:
help:
@
echo -e " \E[33;1m \E[0m "
echo -e " \E[33;1m dependencies \E[0m "
echo -e " \E[33;1m bundle & jekyll \E[0m "
echo -e " \E[33;1m \E[0m "
echo -e " \E[33;1m \E[0m "
echo -e " \E[33;1m Makefile functions \E[0m "
echo -e " \E[33;1m run \E[0m "
echo -e " \E[33;1m use jekyll serve to run it \E[0m "
echo -e " \E[33;1m clean \E[0m "
echo -e " \E[33;1m clean up backup files that ended by '~' \E[0m "
echo -e " \E[33;1m \E[0m "
echo -e " \E[33;1m \E[0m "
echo -e " \E[33;1m please read the Makefile for more informations \E[0m "
echo -e " \E[33;1m \E[0m "
echo -e " \E[33;1m I wish you happy making ^-^ \E[0m "
echo -e " \E[33;1m \E[0m "
run:
cat _config.yml local.yml > _config-local.yml
jekyll serve \
--config _config-local.yml \
--watch \
--drafts
clean:
find . -name .*~ -exec rm {} \;