-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (20 loc) · 866 Bytes
/
Makefile
File metadata and controls
30 lines (20 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
SHELL=/bin/bash
all: build
build:
hugo
devserver:
cd themes/hugo-simple-doc/assets; yarn start
compile:
cd themes/hugo-simple-doc/assets; yarn install; yarn build
init:
git subtree add --prefix themes/hugo-simple-doc git@github.com:max107/hugo-simple-doc.git master --squash
subtree_push:
git subtree push --prefix=themes/hugo-simple-doc git@github.com:max107/hugo-simple-doc.git master
subtree_pull:
git subtree pull --prefix themes/hugo-simple-doc git@github.com:max107/hugo-simple-doc.git master --squash
flexy_init:
git subtree add --prefix themes/hugo-simple-doc/assets/flexy git@github.com:studio107/flexy.git master --squash
flexy_push:
git subtree push --prefix=themes/hugo-simple-doc git@github.com:studio107/flexy.git master
flexy_pull:
git subtree pull --prefix themes/hugo-simple-doc git@github.com:studio107/flexy.git master --squash