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: 757f6f013eb5e5e311d7a95d8e3621bb1921e4ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CONFIG_GH_PAGES := exampleSite/config_for_github_pages.toml
CONFIG := exampleSite/config.toml
CONTENT := exampleSite/content
THEMES := ../
OUTPUT := docs

docs:
	hugo --config ${CONFIG_GH_PAGES} -c ${CONTENT} --themesDir ${THEMES} -d ${OUTPUT}

server:
	hugo --config ${CONFIG} -c ${CONTENT} --themesDir ${THEMES} server

.PHONY: docs