Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/khoivukha/makefilecppexample


https://github.com/khoivukha/makefilecppexample

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# cppMakefileExample

- E.g.1:
1. Build code:
make
2. Run:
./output
3. Clean build artifacts:
make clean

- E.g.2:
1. Build code:
make
2. Run:
./output
3. Clean build artifacts:
make clean

- E.g.3:
1. Build code:
make build
2. Format code:
make format
3. Clean build artifacts:
make clean