Bug #5598 ยป p-mantype.diff
| common.mk (working copy) | ||
|---|---|---|
|
INSTRUBY_ARGS = $(SCRIPT_ARGS) \
|
||
|
--data-mode=$(INSTALL_DATA_MODE) \
|
||
|
--prog-mode=$(INSTALL_PROG_MODE) \
|
||
|
--installed-list $(INSTALLED_LIST)
|
||
|
--installed-list $(INSTALLED_LIST) \
|
||
|
--mantype="$(MANTYPE)"
|
||
|
INSTALL_PROG_MODE = 0755
|
||
|
INSTALL_DATA_MODE = 0644
|
||
| ... | ... | |
|
install-nodoc: pre-install-nodoc do-install-nodoc post-install-nodoc
|
||
|
pre-install-nodoc:: pre-install-local pre-install-ext
|
||
|
do-install-nodoc: $(PREP)
|
||
|
$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --mantype="$(MANTYPE)"
|
||
|
$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS)
|
||
|
post-install-nodoc:: post-install-local post-install-ext
|
||
|
install-local: pre-install-local do-install-local post-install-local
|
||
|
pre-install-local:: pre-install-bin pre-install-lib pre-install-man
|
||
|
do-install-local: $(PREP)
|
||
|
$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=local --mantype="$(MANTYPE)"
|
||
|
$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=local
|
||
|
post-install-local:: post-install-bin post-install-lib post-install-man
|
||
|
install-ext: pre-install-ext do-install-ext post-install-ext
|
||
| ... | ... | |
|
install-man: pre-install-man do-install-man post-install-man
|
||
|
pre-install-man:: install-prereq
|
||
|
do-install-man: $(PREP)
|
||
|
$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=man --mantype="$(MANTYPE)"
|
||
|
$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=man
|
||
|
post-install-man::
|
||
|
@$(NULLCMD)
|
||
| ... | ... | |
|
no-install-nodoc: pre-no-install-nodoc dont-install-nodoc post-no-install-nodoc
|
||
|
pre-no-install-nodoc:: pre-no-install-local pre-no-install-ext
|
||
|
dont-install-nodoc: $(PREP)
|
||
|
$(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --mantype="$(MANTYPE)"
|
||
|
$(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS)
|
||
|
post-no-install-nodoc:: post-no-install-local post-no-install-ext
|
||
|
what-where-local: no-install-local
|
||
|
no-install-local: pre-no-install-local dont-install-local post-no-install-local
|
||
|
pre-no-install-local:: pre-no-install-bin pre-no-install-lib pre-no-install-man
|
||
|
dont-install-local: $(PREP)
|
||
|
$(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=local --mantype="$(MANTYPE)"
|
||
|
$(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=local
|
||
|
post-no-install-local:: post-no-install-bin post-no-install-lib post-no-install-man
|
||
|
what-where-ext: no-install-ext
|
||
| ... | ... | |
|
no-install-man: pre-no-install-man dont-install-man post-no-install-man
|
||
|
pre-no-install-man:: install-prereq
|
||
|
dont-install-man: $(PREP)
|
||
|
$(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=man --mantype="$(MANTYPE)"
|
||
|
$(INSTRUBY) -n --make="$(MAKE)" $(INSTRUBY_ARGS) --install=man
|
||
|
post-no-install-man::
|
||
|
@$(NULLCMD)
|
||