Lucas Meijer
Lucas Meijer

Reputation: 4484

How do I get GNU make to output the commands it executes to builds its targets

none of the --debug= flags seem to do it for me.

Upvotes: 6

Views: 3678

Answers (2)

reinierpost
reinierpost

Reputation: 8611

make SHELL='sh -vx'

may also be helpful.

Upvotes: 6

Jim Lewis
Jim Lewis

Reputation: 45115

Have you tried make -n ?

Upvotes: 4

Related Questions