The repo contains code example and demo for using the make build system
To build the project run make from root directory
make
To clean up the artifacts run the following command
make clean
Run the below command to generate the build configuration using cmake
cmake -S ./ -B ./build_cmake from the root directory
To build the project run make from build_cmake directory
cd build_cmake
make
To clean up the artifacts run the following command from the build_cmake directory
make clean
User can read the blog posts in the following order
-
Build System: A developers Chauffeur
This Blog post introduces and explains the significance of a build system.
-
This Blog post explains the syntax and construct of a MakeFile and how make handles dependency management.