--tests all \
--testOutput ./test_reports/
+# This default rule runs the unit tests with the constructed command.
+test:
+ @mkdir -p $(PROFILES)
+ $(PROG)
+ @rm -rf $(PROFILES)
+
# In case this Makefile needs to be debugged then this rule will provide all
# the information from intermediate steps.
debug:
@echo 'Command to be run: $(PROG)'
@echo
-# This rule runs the unit tests with the constructed command.
-test:
- @mkdir -p $(PROFILES)
- $(PROG)
- @rm -rf $(PROFILES)
-
.phony:: test