lezzo.org/gamewiki/makefile

18 lines
311 B
Makefile
Raw Permalink Normal View History

2023-05-11 10:54:03 +01:00
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