This project demonstrates the creation of a simple C++ project with functions in separate files and a Makefile for compilation and cleanup.
The project consists of the following files:
foo.cpp
: Contains the implementation offoo()
function.bar.cpp
: Contains the implementation ofbar()
function.main.cpp
: Contains themain()
function which callsfoo()
andbar()
.Makefile
: Used to compile and clean the project.