X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/09e022f5a3228abd81944f478ba4e6f1861406bd..a2f4fe7de51cb580ca587d155f01ad569edd36ae:/Makefile diff --git a/Makefile b/Makefile index c890b8e..e5c002a 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,8 @@ PREFIX ?= $(HOME) DESTDIR ?= / PYTHON ?= python +TEST_PATCHES ?= .. + all: $(PYTHON) setup.py build @@ -14,6 +16,11 @@ doc: test: cd t && $(MAKE) all +test_patches: + for patch in $$(stg series --noprefix $(TEST_PATCHES)); do \ + stg goto $$patch && $(MAKE) test || break; \ + done + clean: for dir in Documentation t; do \ (cd $$dir && $(MAKE) clean); \ @@ -26,4 +33,4 @@ clean: tags: ctags -e -R stgit/* -.PHONY: all install doc test clean +.PHONY: all install doc test test_patches clean