Added html documentation to Makefile

This commit is contained in:
buffet 2018-09-29 16:19:17 +02:00
parent f41cc3e59e
commit cbf540c696

View file

@ -42,7 +42,17 @@ $(SYSRC): $(SYLIT)
@echo " [LIT] $@..."
$(HIDE) $(LIT) -t "$<"
doc:
doc: books
books: syrup.html wmaffle.html
wmaffle.html: $(WFLIT)
@echo " [LIT] $@..."
$(HIDE) $(LIT) -w "$<"
syrup.html: $(SYLIT)
@echo " [LIT] $@..."
$(HIDE) $(LIT) -w "$<"
install:
install -d "$(DESTDIR)$(BINPREFIX)"
@ -62,5 +72,7 @@ clean:
$(HIDE) $(RM) $(SRC)
@echo " [RM] $(TARGETS)..."
$(HIDE) $(RM) $(TARGETS)
@echo " [RM] wmaffle.html syrup.html..."
$(HIDE) $(RM) wmaffle.html syrup.html
-include $(DEPS)