Command-line Arguments
If make arguments are targets, build just those targets:
$ make world.o
$ make clean
|
If no args, build first target in the Makefile .
The -n option instructs make
- to tell what it would do to create targets
- but don't execute any of the commands
|