lezzo.org/secretwiki/makefile
2023-05-25 18:39:20 +02:00

13 lines
244 B
Makefile

ORG_FILES := $(filter-out header.org,$(wildcard *.org))
HTML_FILES := $(patsubst %.org,%.html,$(ORG_FILES))
.PHONY: all clean
all: $(HTML_FILES)
%.html: %.org
emacs --batch $< --eval "(org-html-export-to-html)"
clean:
rm -f $(HTML_FILES)