mirror of
https://github.com/pyenv/pyenv-doctor.git
synced 2026-02-06 02:47:35 +09:00
11 lines
154 B
Makefile
11 lines
154 B
Makefile
|
|
PREFIX = @prefix@
|
||
|
|
|
||
|
|
.PHONY: install
|
||
|
|
|
||
|
|
python:
|
||
|
|
echo '#!/bin/sh' > "$@"
|
||
|
|
|
||
|
|
install: python
|
||
|
|
mkdir -p "$(PREFIX)/bin"
|
||
|
|
install -m 755 $< "$(PREFIX)/bin/python"
|