use default SIGCHLD handler
[zbatery.git] / GNUmakefile
blob16766163264f7b4bdbe7e99b0a2d70dd743a4c2d
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) raa_update VERSION=$(VERSION)
12 $(RAKE) publish_news VERSION=$(VERSION)
13 $(RAKE) fm_update VERSION=$(VERSION)
14 endif
16 base_bins := zbatery
17 bins := $(addprefix bin/, $(base_bins))
18 man1_rdoc := $(addsuffix _1, $(base_bins))
19 man1_bins := $(addsuffix .1, $(base_bins))
20 man1_paths := $(addprefix man/man1/, $(man1_bins))
21 clean:
22 -$(MAKE) -C Documentation clean
24 man html:
25 $(MAKE) -C Documentation install-$@
26 pkg_extra += $(man1_paths)
27 doc::
28 $(RM) $(man1_rdoc)
30 all:: test
31 test:
32 $(MAKE) -C t
33 .PHONY: man html