New hugo-based web site.
This commit is contained in:
parent
d44da5784c
commit
f108b70c83
13 changed files with 612 additions and 0 deletions
16
Makefile
Normal file
16
Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# Makefile for Sequoia-www.
|
||||
|
||||
# Tools.
|
||||
HUGO ?= hugo
|
||||
HUGO_FLAGS ?= --destination=public
|
||||
|
||||
.PHONY: all
|
||||
all: build
|
||||
|
||||
.PHONY: build
|
||||
build:
|
||||
$(HUGO) $(HUGO_FLAGS)
|
||||
|
||||
.PHONY: server
|
||||
server:
|
||||
$(HUGO) server
|
||||
Loading…
Add table
Add a link
Reference in a new issue