My preference is for
release:
$(MAKE) clean
$(MAKE) test1
This forces the two targets to be made consecutively without disturbing their inner parallelism (if any).
My preference is for
release:
$(MAKE) clean
$(MAKE) test1
This forces the two targets to be made consecutively without disturbing their inner parallelism (if any).