My blog
https://blog.franco.net.eu.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
234 B
19 lines
234 B
5 years ago
|
#!/usr/bin/make -f
|
||
|
|
||
|
# Copyright (c) 2017 Franco Masotti.
|
||
|
# See LICENSE file for details.
|
||
|
|
||
|
all: build serve
|
||
|
|
||
|
build:
|
||
|
@jekyll build -V --safe -t
|
||
|
|
||
|
serve:
|
||
|
@jekyll serve
|
||
|
|
||
|
serve-global:
|
||
|
@jekyll serve --host=0.0.0.0
|
||
|
|
||
|
clean:
|
||
|
@rm -rf _site
|