Makefile Cheat Sheet/Run make in another directory

Change directory before reading the makefile.

Section: Core make commands

Run make in another directory

bash
bash
make -C services/api test
Explanation

Useful in monorepos and wrapper scripts.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Core make commands
Run default target
Run make using the default makefile and first target.
OpenIn sheetbashsame section
Build a specific target
Run a named target from the makefile.
OpenIn sheetbashsame section
Use a specific makefile
Choose a file other than the default makefile names.
OpenIn sheetbashsame section
Parallel build
Build using multiple jobs.
OpenIn sheetbashsame section
Dry run
Print commands without executing them.
OpenIn sheetbashsame section
Touch targets only
Mark targets as updated without running recipes.
OpenIn sheetbashsame section