wrongdoc.git  about / heads / tags
RDoc done right (IMNSHO)
blob d3dc96dcccdd012cf1526c6c95d374cd84a4fd6a 419 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
 
all::
RSYNC_DEST := bogomips.org:/srv/bogomips/wrongdoc
rfpackage := wrongdoc
PLACEHOLDERS := wrongdoc_1 dotwrongdoc_5
$(PLACEHOLDERS): html
include pkg.mk

man1_paths := $(addprefix man/man1/, wrongdoc.1)
man5_paths := $(addprefix man/man5/, dotwrongdoc.5)
manpages := $(man1_paths) $(man5_paths)

clean:
	-$(MAKE) -C Documentation clean
man html:
	$(MAKE) -C Documentation $@
pkg_extra += $(manpages)

doc:: man html

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