Rakefile: kill raa_update task
[zbatery.git] / GNUmakefile
blobc53b494f64cb38924629c563a6a53b5c33fe8261
1 all::
2 RSYNC_DEST := zbatery.bogomip.org:/srv/zbatery
3 rfproject := rainbows
4 rfpackage := zbatery
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 $(RAKE) fm_update VERSION=$(VERSION)
13 endif
15 base_bins := zbatery
16 bins := $(addprefix bin/, $(base_bins))
17 man1_rdoc := $(addsuffix _1, $(base_bins))
18 man1_bins := $(addsuffix .1, $(base_bins))
19 man1_paths := $(addprefix man/man1/, $(man1_bins))
20 clean:
21 -$(MAKE) -C Documentation clean
23 man html:
24 $(MAKE) -C Documentation install-$@
25 pkg_extra += $(man1_paths)
26 doc::
27 $(RM) $(man1_rdoc)
29 all:: test
30 test:
31 $(MAKE) -C t
32 .PHONY: man html