aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 124162c1f8077c30ac2fb4092bd35142c3be2d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
all:
	@echo "Supported commands:"
	@echo
	@echo "    \033[1mmake deploy\033[0m  - deploy to production"
	@echo "    \033[1mmake static\033[0m  - build static locally"
	@echo

deploy:
	./deploy/deploy.sh

static: build-js build-css static-config

build-js:
	./deploy/build_js.sh -i ./htdocs/js -o ./htdocs/dist-js

build-css:
	./deploy/build_css.sh -i ./htdocs/scss -o ./htdocs/dist-css

static-config:
	./deploy/gen_static_config.php -i ./htdocs > ./config-static.php

.PHONY: all deploy static