lezzo.org/gamewiki/makefile
2023-05-11 11:54:03 +02:00

18 lines
311 B
Makefile

ORG_FILES := $(shell find . -type f -name '*.org' )
HTML_FILES := $(patsubst %.org,temp/%.html,$(ORG_FILES))
.PHONY: all clean
all: $(HTML_FILES)
temp/%.html: %.org | temp
emacs $< --batch -f org-html-export-to-html --kill
mv $(basename $<).html $@
temp:
mkdir temp
mkdir temp/meta
clean:
rm -rf temp