1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
ifneq ($(MAKECMDGOALS),distclean)
include ../Makefile.config
-include ../Makefile.local
endif
DEST=../docs
FLAGS=$(INCLUDES) -hide Pervasives
HTMLFLAGS=-all-params -colorize-code
MANFLAGS=-man-mini
.PHONY: doc
doc: html man
html: $(DEST)/html/index.html
man: $(DEST)/man/Coccilib.3o
$(DEST)/man/Coccilib.3o: coccilib.cmi ../parsing_c/ast_c.cmi
$(MKDIR_P) $(DEST)/man
$(OCAMLDOC) $(FLAGS) -hide Exposed_modules \
-man $(MANFLAGS) -d $(DEST)/man ../parsing_c/ast_c.ml coccilib.ml
$(DEST)/html/index.html: coccilib.cmi ../parsing_c/ast_c.cmi
$(MKDIR_P) $(DEST)/html
$(OCAMLDOC) $(FLAGS) -hide Exposed_modules \
-html $(HTMLFLAGS) -d $(DEST)/html ../parsing_c/ast_c.ml coccilib.ml
cleandoc:
@if test -z "${KEEP_GENERATED}"; then \
rm -rf $(DEST)/html $(DEST)/man; fi
|