lezzo.org/secretwiki/makefile

13 lines
244 B
Makefile
Raw Normal View History

2023-05-25 17:39:20 +01:00
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)