Sha256: 9e7893e78b459420deee77d256b114de6e073323b770a1686607b5e62cb35ea2

Contents?: true

Size: 604 Bytes

Versions: 13

Compression:

Stored size: 604 Bytes

Contents

all::

RONN = ronn
ronn_man = $(RONN) -r
ronn_html = $(RONN) -f

man1 := $(addsuffix .1,wrongdoc)
html1 := $(addsuffix .html_fragment,$(man1))
man5 := $(addsuffix .5,dotwrongdoc)
html5 := $(addsuffix .html_fragment,$(man5))
man := $(man1) $(man5)
html := $(html1) $(html5)

all:: html man

html: $(html)
man: $(man)
	mkdir -p ../man/man1 ../man/man5
	install -m 644 $(man1) ../man/man1
	install -m 644 $(man5) ../man/man5

%.1: %.1.ronn
	$(ronn_man) $<
%.5: %.5.ronn
	$(ronn_man) $<
%.1.html_fragment: %.1.ronn
	$(ronn_html) $<
%.5.html_fragment: %.5.ronn
	$(ronn_html) $<

clean::
	$(RM) $(man) $(html)

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
wrongdoc-1.8.1 Documentation/GNUmakefile
wrongdoc-1.8.0 Documentation/GNUmakefile
wrongdoc-1.7.0 Documentation/GNUmakefile
wrongdoc-1.6.2 Documentation/GNUmakefile
wrongdoc-1.6.1 Documentation/GNUmakefile
wrongdoc-1.6.0 Documentation/GNUmakefile
wrongdoc-1.5.0 Documentation/GNUmakefile
wrongdoc-1.4.0 Documentation/GNUmakefile
wrongdoc-1.3.0 Documentation/GNUmakefile
wrongdoc-1.1.1 Documentation/GNUmakefile
wrongdoc-1.1.0 Documentation/GNUmakefile
wrongdoc-1.0.1 Documentation/GNUmakefile
wrongdoc-1.0.0 Documentation/GNUmakefile