blob: 3a5f19baed75136ba5d880b62092afa4b4488a81 [file] [log] [blame]
default:
PREFIX=/
BINDIR=$(DESTDIR)$(PREFIX)/bin
PYTHON?=python
all:
install:
mkdir -p $(BINDIR)
cp presterastats.py $(BINDIR)/presterastats
install-libs:
@echo "No libs to install."
test: lint
set -e; \
for pytest in $(wildcard *_test.py); do \
echo; \
echo "Testing $$pytest"; \
$(PYTHON) $$pytest; \
done
clean:
rm -rf *.pyc
lint:
for n in $(filter-out options.py, $(wildcard *.py)); do \
gpylint $$n || exit 1; \
done