summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 141eca1e613b8b6da310006a2e517e2c3aa8dfae (plain) (blame)
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
default:
	@echo "*** BežiApp Makefile ***"
	@echo "targets:"
	@echo "	make prepare	installs dependencies, cleans after itself, requires sudo permissions and debian/ubuntu for apt"
	@echo "	make install	installs BežiApp to dist/"
	@echo "no target specified, exiting ..."

prepare:
	#!/bin/bash
	sudo apt install git
	mkdir tmp
	cd tmp
	rm -rf bverbose
	git clone https://github.com/sijanec/bverbose
	cd bverbose
	make prepare
	make install
	mv bin ../../bin
	cd ..
	rm -rf bverbose
	cd ..

install:
	#!/bin/bash
	./bin/bvr-compose-html assets/pages-src/ dist/pages/ .html
	cp -r assets/css dist/
	cp -r assets/fonts dist/
	cp -r assets/img dist/
	find assets/root/ -type f \( ! -name "*.bvr" \) -exec cp -r "{}" dist/  \;
	find assets/root/ -name "*.bvr" -printf "%f\n" | xargs -I % bash -c "FILE='%'; FILE_DST="dist/\${FILE/.bvr/}"; ./bin/bvr-compose-single \"assets/root/\$FILE\" \"\$FILE_DST\""

	# js bvr fajli
	mkdir -p dist/js
	# js ne znam te magije
	find assets/js/ -name "*.bvr" -printf "%f\n" | xargs -I % bash -c "FILE='%'; FILE_DST="dist/js/\${FILE/.bvr/}"; ./bin/bvr-compose-single \"assets/js/\$FILE\" \"\$FILE_DST\""
	find assets/js/ -name "*.js" -printf "%P\n" | xargs -I % bash -c "FILE='%'; FILE_DST="dist/js/\${FILE/.bvr/}"; ./bin/bvr-jsmin assets/js/\"\$FILE\" \"\$FILE_DST\""

	cp -r assets/root/.well-known dist/