zbatery.git  about / heads / tags
Zbatery HTTP server for Rack
blob e7e9df1b976ee4fff85282203bbde890dbfbdd4d 477 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
25
26
 
all::
RSYNC_DEST := zbatery.bogomip.org:/srv/zbatery
rfpackage := zbatery
PLACEHOLDERS := zbatery_1

man-rdoc: man html
doc:: man-rdoc
include pkg.mk

base_bins := zbatery
bins := $(addprefix bin/, $(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::

all:: test
test:
	$(MAKE) -C t
.PHONY: man html

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