goodwatch/website/Makefile

17 lines
250 B
Makefile
Raw Normal View History

2017-11-26 19:35:43 +00:00
all: build
2017-11-26 19:35:43 +00:00
theme:
2017-12-12 18:15:06 +00:00
mkdir -p themes
2017-11-26 19:35:43 +00:00
cd themes && ls hugo_theme_robust || git clone https://github.com/dim0627/hugo_theme_robust.git
build: theme
hugo
2017-11-26 19:35:43 +00:00
server: theme
hugo server
deploy: build
2017-12-12 18:15:06 +00:00
cp -rf public/* /var/www/html/
2017-11-26 19:35:43 +00:00
clean:
rm -rf public