# # Makefile to generate Unit, Integration and System tests for MIX # .PHONY : all all: unit_tests integration_tests system_tests @ echo "===>>> MIX: All tests completed <<<===" help: @ printf ' \ Testing framework for MIX \n \ Enter "gmake all" to run the following tests:\n \ * Unit \n \ * Integration \n \ * System \n \ ' # # Unit Tests # http://en.wikipedia.org/wiki/Unit_test # # unit_tests: echo "===>>> MIX: Running Unit Tests <<<===" cd unit && $(MAKE) # # Integration Tests # http://en.wikipedia.org/wiki/Integration_testing # # integration_tests: echo "===>>> MIX: Running Unit Tests <<<===" cd integration && $(MAKE) # # System tests # http://en.wikipedia.org/wiki/System_testing # # system_tests: echo "MIX: Integration tests NOT IMPLEMENTED!" # # Cleanup # clean: cd unit && ${MAKE} clean distclean: clean cd unit && ${MAKE} clean