From 3ce82fade1d2d43c1c95c4282dc42e7510cd6865 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 14 Oct 2016 18:48:44 -0400 Subject: [PATCH] Tweak the makefile now that the imports work better. --- makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index db76ca1..b8a0271 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,5 @@ -SRCDIR := src/dunshire +PN := dunshire +SRCDIR := src/$(PN) SRCS := $(SRCDIR)/*.py doc: $(SRCS) doc/source/conf.py doc/makefile @@ -11,7 +12,7 @@ check: .PHONY: lint lint: - PYTHONPATH="$(SRCDIR)" pylint --rcfile=./.pylintrc $(SRCS) + pylint --rcfile=./.pylintrc $(SRCS) .PHONY: clean clean: -- 2.43.2