dil2743 / Makefile-Tutorial

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

License:MIT License


Languages

Language:C 68.3%Language:Makefile 20.9%Language:CMake 10.8%