Rakefile: kill raa_update task
[ruby_posix_mq.git] / GNUmakefile
blobef19cb30569bf743bac2413183bad61df6429604
1 all::
2 RSYNC_DEST := bogomips.org:/srv/bogomips/ruby_posix_mq
3 rfproject := qrp
4 rfpackage := posix_mq
5 man-rdoc: man html
6 for i in $(man1_rdoc); do echo > $$i; done
7 doc:: man-rdoc
8 include pkg.mk
9 ifneq ($(VERSION),)
10 release::
11 $(RAKE) publish_news VERSION=$(VERSION)
12 endif
14 base_bins := posix-mq-rb
15 bins := $(addprefix bin/, $(base_bins))
16 man1_rdoc := $(addsuffix _1, $(base_bins))
17 man1_bins := $(addsuffix .1, $(base_bins))
18 man1_paths := $(addprefix man/man1/, $(man1_bins))
20 clean:
21 -$(MAKE) -C Documentation clean
23 man html:
24 $(MAKE) -C Documentation install-$@
26 pkg_extra += $(man1_paths)
28 doc::
29 install -m644 COPYING-GPL2 doc/COPYING-GPL2
30 $(RM) $(man1_rdoc)
31 .PHONY: man html