mirror of
https://github.com/pyenv/pyenv-doctor.git
synced 2025-12-08 15:31:27 +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"
|