Remove subshell calls to "make" inside Makefile/Makefile.win
Open
build
enhancement
- Dominant language
- Erlang
- Stars
- 7k
- Forks
- 1.1k
- Avg merge
- 1d 16h
- Merged PRs (30d)
- 9
Description
We have this pattern all over the Makefiles and it is code smell.
Example:
```
check: all python-black
@$(MAKE) eunit
@$(MAKE) javascript
@$(MAKE) mango-test
@$(MAKE) elixir
```
Figure out why this is, and fix it.
Contributor guide
Research direction
Read the Makefile and Makefile.win, starting with the check target and its repeated $(MAKE) calls. Determine why these subshell invocations are used, then verify that the affected checks still run correctly without the code-smell pattern.
Written by the indexing model from the issue text.
Assessment
- Domain
- build-system
- Issue type
- Refactor
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 35/100