Create a make project that can be launched outside the IDE

To create a make file that can be launched outside the IDE:
  1. In the Project Explorer view, select a project, right-click and select Properties.
  2. On the left, select C/C++ Build.
  3. On the right, verify that the Generate Makefiles automatically and the options Expand Env. Variable Refs in Makefiles in the group Makefile generation are selected.
  4. On the left, expand C/C++ Build, and select Tool chain editor.
  5. In the Current builder list, select the GNU Make Builder.
  6. Specify any other desirable options for properties on the other panels.
  7. Click OK. As a result, the IDE generates a number of .mk files, and a top level make file for each processed configuration (the last one in the configuration folder). This make file can be processed from the command line using the make utility:
    make -f [configuration]/makefile [target]
  8. Every time any configuration is changed, updated, or deleted, you need to refresh the make infrastructure either by regenerating the make files, or changing the existing files manually.

For more information about using the CDT new project wizard, see Create a C/C++ project.

For a list of new workbench features, see What's New in the Workbench User Guide (Help > Help Contents > Workbench User Guide > What's new).

For a list of new CDT features, see What's new in the CDT? in the C/C++ Development User Guide (Help > Help Contents > C/C++ Development User Guide > What's new).