Added html documentation to Makefile
This commit is contained in:
parent
f41cc3e59e
commit
cbf540c696
1 changed files with 13 additions and 1 deletions
14
Makefile
14
Makefile
|
@ -42,8 +42,18 @@ $(SYSRC): $(SYLIT)
|
||||||
@echo " [LIT] $@..."
|
@echo " [LIT] $@..."
|
||||||
$(HIDE) $(LIT) -t "$<"
|
$(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:
|
||||||
install -d "$(DESTDIR)$(BINPREFIX)"
|
install -d "$(DESTDIR)$(BINPREFIX)"
|
||||||
install -m 755 "$(WFTARGET)" "$(DESTDIR)$(BINPREFIX)"
|
install -m 755 "$(WFTARGET)" "$(DESTDIR)$(BINPREFIX)"
|
||||||
|
@ -62,5 +72,7 @@ clean:
|
||||||
$(HIDE) $(RM) $(SRC)
|
$(HIDE) $(RM) $(SRC)
|
||||||
@echo " [RM] $(TARGETS)..."
|
@echo " [RM] $(TARGETS)..."
|
||||||
$(HIDE) $(RM) $(TARGETS)
|
$(HIDE) $(RM) $(TARGETS)
|
||||||
|
@echo " [RM] wmaffle.html syrup.html..."
|
||||||
|
$(HIDE) $(RM) wmaffle.html syrup.html
|
||||||
|
|
||||||
-include $(DEPS)
|
-include $(DEPS)
|
||||||
|
|
Loading…
Add table
Reference in a new issue