- 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
17 lines
191 B
Makefile
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/
|