mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 08:09:13 +00:00
17 lines
250 B
Makefile
17 lines
250 B
Makefile
|
|
all: build
|
|
|
|
|
|
theme:
|
|
mkdir -p themes
|
|
cd themes && ls hugo_theme_robust || git clone https://github.com/dim0627/hugo_theme_robust.git
|
|
build: theme
|
|
hugo
|
|
server: theme
|
|
hugo server
|
|
deploy: build
|
|
cp -rf public/* /var/www/html/
|
|
|
|
clean:
|
|
rm -rf public
|