Makefile (658e85aa4ff2951f1e5163767827eaffccd51067) | Makefile (d32442485df7633fc67245e3e614d29ac3c45dbd) |
---|---|
1include ../../../scripts/Makefile.include 2include ../../../scripts/utilities.mak 3 4INSTALL ?= install 5RM ?= rm -f | 1include ../../../scripts/Makefile.include 2include ../../../scripts/utilities.mak 3 4INSTALL ?= install 5RM ?= rm -f |
6RMDIR ?= rmdir --ignore-fail-on-non-empty |
|
6 7ifeq ($(V),1) 8 Q = 9else 10 Q = @ 11endif 12 13prefix ?= /usr/local --- 15 unchanged lines hidden (view full) --- 29 $(call QUIET_CLEAN, Documentation) 30 $(Q)$(RM) $(DOC_MAN8) 31 32install: man 33 $(call QUIET_INSTALL, Documentation-man) 34 $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$(man8dir) 35 $(Q)$(INSTALL) -m 644 $(DOC_MAN8) $(DESTDIR)$(man8dir) 36 | 7 8ifeq ($(V),1) 9 Q = 10else 11 Q = @ 12endif 13 14prefix ?= /usr/local --- 15 unchanged lines hidden (view full) --- 30 $(call QUIET_CLEAN, Documentation) 31 $(Q)$(RM) $(DOC_MAN8) 32 33install: man 34 $(call QUIET_INSTALL, Documentation-man) 35 $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$(man8dir) 36 $(Q)$(INSTALL) -m 644 $(DOC_MAN8) $(DESTDIR)$(man8dir) 37 |
37.PHONY: man man8 clean install | 38uninstall: 39 $(call QUIET_UNINST, Documentation-man) 40 $(Q)$(RM) $(addprefix $(DESTDIR)$(man8dir)/,$(_DOC_MAN8)) 41 $(Q)$(RMDIR) $(DESTDIR)$(man8dir) 42 43.PHONY: man man8 clean install uninstall |
38.DEFAULT_GOAL := man | 44.DEFAULT_GOAL := man |