This repository acts as support material for the students of Introduction to CS at National Technological University. It consists of a series of samples that incrementally show different features of GNU Make.
To build the sample project from source, the following tools are needed:
- git
- make
- gcc
On Ubuntu/Debian, you can install them with:
sudo apt-get install git build-essential
On other platforms, please use the corresponding package managing tool to install them before proceeding.
You can get the source by "git clone" this git repository.
git clone https://github.com/jballoffet/make-samples.git
To build a sample application execute the following:
cd make-samples/sampleXX
make app
To run a sample application execute the following:
./app
This project is licensed under the MIT License. See the LICENSE file for details.