15 lines
282 B
Makefile
15 lines
282 B
Makefile
|
|
# vim: noexpandtab tabstop=4 :
|
|
|
|
PREFIX ?= ~/bin/
|
|
|
|
help:
|
|
echo "this makfile installs zpp.py into $${PREFIX},"
|
|
echo "which is currently set to ${PREFIX}"
|
|
echo "run: make install to make that happen."
|
|
|
|
install: zpp
|
|
mkdir -p ${PREFIX}
|
|
install --backup=numbered -t ${PREFIX} zpp
|
|
|
|
|