# Makefile for mpdb's unit tests. # # To run all tests type: # # make test # # or 'make target' to run a specific test, such as 'make tcptest' PY = python .PHONY: all test test_mpdb test_mconnection test_mthread test_process all: test test: test_mpdb test_mconnection test_mthread test_process test_mpdb: @$(PY) test_mpdb.py test_mconnection: @$(PY) test_mconnection.py test_mthread: @$(PY) test_mthread.py test_process: @$(PY) test_process.py