Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/s3bza/cos214-cpp-template

A basic C++ template project structure.
https://github.com/s3bza/cos214-cpp-template

cpp makefile template

Last synced: 21 days ago
JSON representation

A basic C++ template project structure.

Awesome Lists containing this project

README

        

# Hello,

This project provides a convenient project setup experience by providing you with a simple makefile a file structure. The makefile provides you with the following commands:

- `make all`: builds and runs the project
- `make build`: builds an executable and stores it in the build/ directory
- `make clean`: removes the build/ directory contents
- `make run` : runs executable in the build/ directory
- `make gdb`: runs the executable using gdb
- `make valgrind`: runs the executable using Valgrind