From 5b2f83cf6298ca361e250a85567f19cd76002a0b Mon Sep 17 00:00:00 2001 From: rocky Date: Thu, 17 Dec 2015 20:58:17 -0500 Subject: [PATCH] correct makefile build targets --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0e2daacf..58ecd0ba 100644 --- a/Makefile +++ b/Makefile @@ -27,9 +27,13 @@ check-long: pytest check-short: pytest $(MAKE) -C test check-short-2.7 -#: Run quick tests +#: Run tests if Python 2.7 +check-2.7: pytest + $(MAKE) -C test $@ + +#: Run tests if Python 3.4 check-3.4: pytest - $(MAKE) -C test check-3.4 + $(MAKE) -C test $@ #: check that disassembly exactly matches Python lib's dis