blog/Makefile

20 lines
288 B
Makefile

#!/usr/bin/make -f
# Copyright (c) 2017 Franco Masotti.
# See LICENSE file for details.
PORT = 3050
all: build serve
build:
@jekyll build -V --safe -t --future
serve:
@jekyll serve --future
serve-global:
@jekyll serve --host=0.0.0.0 --port=$(PORT) --future
clean:
@rm -rf _site