mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-01-01 14:44:48 +01:00
9 lines
256 B
Makefile
9 lines
256 B
Makefile
|
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
|
||
|
asciidoctor -b manpage -a version=$(release_version:v%=%) -o $@ $<
|