Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/s3bza/cos214-cpp-template
- Owner: S3BzA
- License: mit
- Created: 2024-07-26T13:12:49.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-07-26T13:35:36.000Z (4 months ago)
- Last Synced: 2024-10-15T02:16:46.026Z (about 1 month ago)
- Topics: cpp, makefile, template
- Language: Makefile
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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