pyenv-doctor/Makefile.in
2013-06-12 12:45:11 +09:00

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