Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - github.com/runningstream/hugograyscale.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9cc0a68200fd2294f83ffe79564033d4e511e509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
EXAMPLE_SITE := exampleSite
CONFIG_GH_PAGES := config_for_github_pages.toml
CONFIG := config.toml
THEMES := ../../
OUTPUT := ../docs

docs:
	hugo -s ${EXAMPLE_SITE} --config ${CONFIG_GH_PAGES} --themesDir ${THEMES} -d ${OUTPUT}

server:
	hugo -s ${EXAMPLE_SITE} --themesDir ${THEMES} server

.PHONY: docs