-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
45 lines (36 loc) · 1.1 KB
/
Makefile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
default: run
# Set default warning mode if not specified
# permitted values debug|info|warn|error
# e.g. usage from make cli:
# make build log=debug
# make build-site log=debug
log ?= warn
help: ## list out commands with descriptions
@sed -ne '/@sed/!s/## //p' $(MAKEFILE_LIST)
run: ## (default) run Hugo server & watch Tailwind CSS compiler
@make -j2 run-site run-css
# --jobs=2 parallelizes the commands
build: ## build the site
@make site css
site: ## build the site
@hugo \
build \
--cleanDestinationDir --gc --minify --printI18nWarnings --buildDrafts \
--logLevel $(log)
css: ## compile Tailwind CSS
@npx @tailwindcss/cli \
-i ./assets/css/input.css \
-o ./assets/css/output.css
run-css: ## watch Tailwind CSS compiler
@npx @tailwindcss/cli \
-i ./assets/css/input.css \
-o ./assets/css/output.css --watch
run-site: ## run Hugo server
@hugo \
server \
--bind=0.0.0.0 --disableFastRender \
--cleanDestinationDir --gc --minify --printI18nWarnings --buildDrafts \
--logLevel $(log)
clean: ## remove all the generated files
rm -rf public
rm -f assets/css/output.css