Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
bee
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
0
Code
Issues
7
Pull requests
3
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
c12e7ea
buildtypes
conf
contrib
hooks
manpages
Makefile
bee-check.1.in
bee-check.xml
bee-download.1.in
bee-download.xml
bee-init.1.in
bee-init.xml
bee-install.1.in
bee-install.xml
bee-list.1.in
bee-list.xml
bee-query.1.in
bee-query.xml
bee-remove.1.in
bee-remove.xml
bee-update.1.in
bee.1.in
bee.xml
beesh.1.in
src
.gitattributes
.gitignore
COPYING
DEPENDENCIES
INSTALL
Makefile
TODO
Breadcrumbs
bee
/
manpages
/
Makefile
Blame
Blame
Latest commit
History
History
32 lines (25 loc) · 800 Bytes
Breadcrumbs
bee
/
manpages
/
Makefile
Top
File metadata and controls
Code
Blame
32 lines (25 loc) · 800 Bytes
Raw
quiet-command = $(if ${V},${1},$(if ${2},@echo ${2} && ${1}, @${1})) MANPAGES += bee MANPAGES += bee-check MANPAGES += bee-download MANPAGES += bee-list MANPAGES += bee-init MANPAGES += bee-install MANPAGES += bee-query MANPAGES += bee-remove XMLTO = xmlto XMLTO_FLAGS = --stringparam man.output.quietly=1 .PHONY: all all: @echo "Following targets are availabe:" @echo " xml2man - update manpages" .PHONY: xml2man xml2man: force-clean $(addsuffix .1.in,$(MANPAGES)) .PHONY: force-clean force-clean: $(call quiet-command,rm -f $(addsuffix .1.in,$(MANPAGES)),"CLEAN *.1.in") $(call quiet-command,rm -f $(addsuffix .1, $(MANPAGES)),"CLEAN *.1") %.1: %.xml $(call quiet-command,$(XMLTO) $(XMLTO_FLAGS) man $<,"XMLTO $<") %.1.in: %.1 $(call quiet-command,mv $< $@,"RENAME $<")
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
31
32
You can’t perform that action at this time.