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

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

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

.PHONY: docs