Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.02 KB

README.md

File metadata and controls

39 lines (32 loc) · 1.02 KB

Makefile-Tutorial

The repo contains code example and demo for using the make build system

Make

To build the project run make from root directory

make

To clean up the artifacts run the following command

make clean

Cmake

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

Blog List

User can read the blog posts in the following order