Making Targets

Follow these steps to generate the target components for the Intel C/C++ Scanner Info Collector:

  1. Select Window > Show View > Make Targets. This action adds the Make Targets view to the Eclipse* IDE.
  2. Right-click the scanner_test project in the Make Targets view, and select Add Make Target.
  3. Use the default settings on the Create a new Make target dialog. Click Create.
  4. Repeat step 2 to create another Make target. This time, enter "clean" in the Target Name and Make Target fields of the Create a new Make target dialog. Click Create.

You should now have two make targets (all and clean) under the scanner_test project in the Make Targets view.

To build a target, right-click on either all or clean, then select Build Make Target.

If you build the all make target, you should see the following output in the Console view:

make -k all

icc -I./scanner_test_includes scanner_test.c -o scanner_test.exe