rbenv-ruby-build/Makefile

10 lines
302 B
Makefile
Raw Permalink Normal View History

2023-11-07 18:13:12 +01:00
release_version := $(shell grep "^RUBY_BUILD_VERSION" bin/ruby-build | cut -d\" -f2)
.PHONY: install
install:
bash install.sh
share/man/man1/%.1: share/man/man1/%.1.adoc bin/ruby-build
2024-03-18 19:02:23 +01:00
which asciidoctor || gem install asciidoctor
2023-11-07 18:13:12 +01:00
asciidoctor -b manpage -a version=$(release_version:v%=%) -o $@ $<