X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;fp=makefile;h=0cd51823d36ae7faabae243778b6d66319fc7a35;hb=bdb596b84a06d0c97e39d42586a51fc36ba44186;hp=7fe104e2140476613e6a08c00c97fc5304e7ed6a;hpb=21a2eb9a647a48c0e94d02c60ef8785c4ea35f7b;p=dunshire.git diff --git a/makefile b/makefile index 7fe104e..0cd5182 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ PN := dunshire -SRCS := src/$(PN)/*.py src/test/*.py +SRCS := $(PN)/*.py test/*.py doc: $(SRCS) doc/source/conf.py doc/makefile cd doc && $(MAKE) html @@ -10,7 +10,7 @@ doctest: .PHONY: check check: - PYTHONPATH=src python src/test/suite.py + PYTHONPATH="." python test/ .PHONY: lint lint: @@ -18,4 +18,5 @@ lint: .PHONY: clean clean: - rm -rf src/$(PN)/__pycache__ src/test/__pycache__ doc/build + rm -rf $(PN)/__pycache__ test/__pycache__ doc/build + rm -rf $(PN).egg-info