non/doc/Makefile

14 lines
149 B
Makefile
Raw Normal View History

2007-12-18 05:09:02 +01:00
SRCS=OVERVIEW.mu KEYS.mu MANUAL.mu
OBJS=$(SRCS:.mu=.html)
%.html: %.mu
mup html < $< > $@
.PHONY: all clean
all: $(OBJS)
clean:
rm -f $(OBJS)