Just upgraded my computer to Mac OS X Lion and went to terminal and typed \"make\" but it says: -bash: make: command not found
Where did the \"make\" command go?
Xcode 4.3.2 didn't install "Command Line Tools" by default. I had to open Xcode Preferences / Downloads / Components Tab. It had a list of optional components with an "Install" button beside each. This includes "Command Line Tools" and components to support developing for older versions of iOS.
Now "make" is available and you can check by opening terminal and typing:make -v
The result should look like:GNU Make 3.81
You may need "make" even if you don't need Xcode, such as a Perl developer installing Perl Modules using cpan -i on the commandline.