mirror of https://github.com/kc0bfv/ticky_tacky_dark.git

Karl
15.27.2020 d0f9ca61a9fb7e4c6633127fddf797a2699e0140
1
2
3
4
5
6
7
8
9
10
11
12
EXAMPLE_SITE := exampleSite
CONFIG_GH_PAGES := config_for_github_pages.toml
CONFIG := config.toml
THEMES := ../../
 
public:
    hugo -s ${EXAMPLE_SITE} --config ${CONFIG_GH_PAGES} --themesDir ${THEMES}
 
server:
    hugo -s ${EXAMPLE_SITE} --themesDir ${THEMES} server
 
.PHONY: public server