bitdispenser.dev/Makefile
Davide Polonio 06e0e6afe8 refactor: migrate from Hugo to Org-mode static site generator
- Remove Hugo configuration, themes, and Node.js dependencies
- Delete CI/CD files (.drone.yml, .fleek.json, Dockerfile)
- Convert Markdown content to Org-mode format in org/ directory
- Add Emacs Lisp publishing script with ox-publish configuration
- Create Makefile for build automation
- Update .gitignore for Emacs and macOS files
- Preserve media assets with Git LFS tracking
- Add RSS feed generation capability
- Remove package.json, package-lock.json, and markdownlint config
2025-09-23 17:07:02 +02:00

17 lines
191 B
Makefile

.PHONY: all
.DEFAULT_GOAL := all
all: clean html
html:
@./publish.el
watch:
@fswatch -0 path | while read -d "" event \
do;
./publish.el "${event}";
done
clean:
@rm -rf ./dist/