Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khoivukha/makefilecppexample
https://github.com/khoivukha/makefilecppexample
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/khoivukha/makefilecppexample
- Owner: KhoiVuKha
- Created: 2022-06-21T15:38:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-21T15:52:27.000Z (over 2 years ago)
- Last Synced: 2023-03-05T04:37:46.829Z (almost 2 years ago)
- Language: Makefile
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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