Sha256: 380211057fd16223fdd65ebf0b8ddfc1d4d5f497b5170b8468503926b7e06fd3

Contents?: true

Size: 921 Bytes

Versions: 14

Compression:

Stored size: 921 Bytes

Contents

# use GNU Make to run tests in parallel, and without depending on RubyGems
all::
RSYNC_DEST := rubyforge.org:/var/www/gforge-projects/rainbows
rfproject := rainbows
rfpackage := rainbows

man-rdoc: man html
	$(MAKE) -C Documentation comparison.html
	for i in $(man1_rdoc); do echo > $$i; done
doc:: man-rdoc
include pkg.mk
ifneq ($(VERSION),)
release::
	$(RAKE) raa_update VERSION=$(VERSION)
	$(RAKE) publish_news VERSION=$(VERSION)
	$(RAKE) fm_update VERSION=$(VERSION)
endif

base_bins := rainbows
bins := $(addprefix bin/, $(base_bins))
man1_rdoc := $(addsuffix _1, $(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::
	cat Documentation/comparison.css >> doc/rdoc.css
	$(RM) $(man1_rdoc)

all:: test
test:
	$(MAKE) -C t

.PHONY: man html

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
rainbows-4.4.3 GNUmakefile
rainbows-4.4.2 GNUmakefile
rainbows-4.4.1.1.gd5c8c GNUmakefile
rainbows-4.4.1 GNUmakefile
rainbows-4.4.0 GNUmakefile
rainbows-4.3.1 GNUmakefile
rainbows-4.3.0 GNUmakefile
rainbows-4.2.0 GNUmakefile
rainbows-4.1.0 GNUmakefile
rainbows-4.0.0 GNUmakefile
rainbows-3.4.0 GNUmakefile
rainbows-3.3.0 GNUmakefile
rainbows-3.2.0 GNUmakefile
rainbows-3.1.0 GNUmakefile