correct makefile build targets

This commit is contained in:
rocky 2015-12-17 20:58:17 -05:00
parent 2fc2d6c699
commit 5b2f83cf62

View File

@ -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