ruby_posix_mq.git  about / heads / tags
POSIX message queues for Ruby
blob 66aa7c88aef8d333a3a9d9a73d0e757cc6f03242 540 bytes (raw)
$ git show HEAD:GNUmakefile	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
all::
PLACEHOLDERS = posix-mq-rb_1
RSYNC_DEST := bogomips.org:/srv/bogomips/ruby_posix_mq
rfpackage := posix_mq

base_bins := posix-mq-rb
bins := $(addprefix bin/, $(base_bins))
man1_rdoc := $(addsuffix _1, $(base_bins))
man1_bins := $(addsuffix .1, $(base_bins))
man1_paths := $(addprefix man/man1/, $(man1_bins))

clean:
	-$(MAKE) -C Documentation clean

man html:
	$(MAKE) -C Documentation install-$@

pkg_extra += $(man1_paths)
$(man1_paths): man

doc:: html
	install -m644 COPYING-GPL2 doc/COPYING-GPL2
include pkg.mk
.PHONY: man html

git clone https://yhbt.net/ruby_posix_mq.git