blob: 2782077ed3035fc3689a737c6291dddf4cae8ce4 (
plain)
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
|
TOP = ..
include $(TOP)/mk/boilerplate.mk
SUBDIRS = man docbook-cheat-sheet users_guide ext-core storage-mgt
PAGE = index.html
install-docs :: $(PAGE)
$(INSTALL_DIR) $(DESTDIR)$(htmldir)
$(INSTALL_DATA) $(INSTALL_OPTS) $(PAGE) $(DESTDIR)$(htmldir)
.PHONY: binary-dist binary-dist.doc.%
binary-dist: $(foreach SUBDIR,$(SUBDIRS),binary-dist.doc.$(SUBDIR))
ifeq "$(WHERE_AM_I)" ""
echo "I don't know where I am" >&2
exit 1
endif
echo $(WHERE_AM_I)/Makefile >> $(BIN_DIST_LIST)
echo $(WHERE_AM_I)/$(PAGE) >> $(BIN_DIST_LIST)
$(foreach SUBDIR,$(SUBDIRS),binary-dist.doc.$(SUBDIR)): \
binary-dist.doc.%:
$(MAKE) -C $* binary-dist WHERE_AM_I=$(WHERE_AM_I)/$*
include $(TOP)/mk/target.mk
|