non/doc/Makefile

14 lines
149 B
Makefile

SRCS=OVERVIEW.mu KEYS.mu MANUAL.mu
OBJS=$(SRCS:.mu=.html)
%.html: %.mu
mup html < $< > $@
.PHONY: all clean
all: $(OBJS)
clean:
rm -f $(OBJS)