aboutsummaryrefslogtreecommitdiffstats
path: root/web/template/Makefile
blob: e5b32df958fd3cff18dbe97172cf9500a9e5f661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SASS ?= sass
PNPM ?= pnpm

CUSTOM_BOOTSTRAP_SCSS := vendor/custom-bootstrap/scss/custom.scss
CUSTOM_CSS_OUT := assets/css/styles.css
VENDOR_FOLDER := vendor/custom-bootstrap

.PHONY: css watch-css install

install:
	$(PNPM) -C $(VENDOR_FOLDER) install

css:
	$(SASS) -q $(CUSTOM_BOOTSTRAP_SCSS) $(CUSTOM_CSS_OUT)

watch-css:
	$(SASS) --watch $(CUSTOM_BOOTSTRAP_SCSS):$(CUSTOM_CSS_OUT)