-
Files under ./examples/
- for a particular file
make <file-name>
-
for all the files
make all
-
Files under ./examples/
- for a particular file
make -f Makefile.ext <file-name>
-
for all the files
make -f Makefile.ext all
The compiled binaries will be placed in ./build/
Execute them using ./build/<file-name>
The build folder can be cleaning by using make clean
for a clean rebuild e.g. make clean && make all