themusicinnoise-site/Makefile

28 lines
902 B
Makefile
Raw Normal View History

2021-04-19 11:37:50 +00:00
OUTPUT_DIR=./output
2022-10-15 14:32:58 +00:00
WEB_ROOT=/var/www/themusicinnoise.net/main
2022-10-15 14:33:21 +00:00
.PHONY: all pages blog clean install
2021-04-19 11:37:50 +00:00
all: pages blog
cp -r static/* $(OUTPUT_DIR)
2020-11-12 09:08:48 +00:00
pages:
mkdir -p $(OUTPUT_DIR)
find pages -type f -name '*.cfg' -print0 | sort -zr | xargs -0 saait -o $(OUTPUT_DIR)/
2020-11-12 09:08:48 +00:00
blog:
mkdir -p $(OUTPUT_DIR)/blog
2021-11-16 19:27:33 +00:00
cat templates/page/header.html blog/templates/index.html/header-part.html > blog/templates/index.html/header.html
2022-02-17 19:40:22 +00:00
sed -i -e 's/\$${title}/Blog/' blog/templates/index.html/header.html
2021-11-16 19:27:33 +00:00
cat blog/templates/index.html/footer-part.html templates/page/footer.html > blog/templates/index.html/footer.html
find blog/posts -type f -name '*.cfg' -print0 | sort -zr | xargs -0 saait -o $(OUTPUT_DIR)/blog/ -t blog/templates/
2020-11-12 09:08:48 +00:00
clean:
rm -rf $(OUTPUT_DIR)
2021-11-16 19:27:33 +00:00
rm -f blog/templates/index.html/header.html
rm -f blog/templates/index.html/footer.html
2022-10-15 14:32:58 +00:00
install: all
mkdir -p
cp -r $(OUTPUT_DIR)/* $(WEB_ROOT)/