themusicinnoise-site/Makefile

27 lines
956 B
Makefile
Raw Normal View History

2021-04-19 11:37:50 +00:00
OUTPUT_DIR=./output
2021-04-19 11:37:50 +00:00
.PHONY: all pages blog sync clean
all: pages blog
cp -r static/* $(OUTPUT_DIR)
#cp nicolas@ortegas.org_pub.asc style.css favicon.png profile.png $(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
2021-04-19 11:37:50 +00:00
sync: all
rsync -avz --delete $(OUTPUT_DIR)/ nicolas@192.168.1.141::tmin-site
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