mirror of
https://github.com/pyenv/pyenv-doctor.git
synced 2025-12-07 23:11:27 +09:00
14 lines
176 B
Makefile
14 lines
176 B
Makefile
PREFIX = @prefix@
|
|
|
|
.PHONY: install
|
|
|
|
python:
|
|
echo '#!/bin/sh' > "$@"
|
|
|
|
install: python
|
|
mkdir -p "$(PREFIX)/bin"
|
|
install -m 755 $< "$(PREFIX)/bin/python"
|
|
|
|
clean:
|
|
rm -f python
|