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: 162eef6bbd0cbc38f368169bef2a4aace2c400d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
EXAMPLE_SITE := exampleSite
CONFIG_GH_PAGES := config_for_github_pages.toml
CONFIG := config.toml
THEMES := ../../
OUTPUT_RAW := docs
OUTPUT := ../${OUTPUT_RAW}

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

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

.PHONY: docs