ruby_posix_mq.git  about / heads / tags
POSIX message queues for Ruby
blob 5c9d1ae5958ed60480058ad968cb08a549e93947 718 bytes (raw)
$ git show v0.7.0: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
25
26
27
28
29
30
31
32
 
all::
RSYNC_DEST := bogomips.org:/srv/bogomips/ruby_posix_mq
rfproject := qrp
rfpackage := posix_mq
man-rdoc: man html
	for i in $(man1_rdoc); do echo > $$i; done
doc:: man-rdoc
include pkg.mk
ifneq ($(VERSION),)
release::
	$(RAKE) raa_update VERSION=$(VERSION)
	$(RAKE) publish_news VERSION=$(VERSION)
endif

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)

doc::
	install -m644 COPYING-GPL2 doc/COPYING-GPL2
	$(RM) $(man1_rdoc)
.PHONY: man html

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