Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/offchan42/hello-c-and-makefile
A hello world program written in C for me to practice writing GNU Makefile
https://github.com/offchan42/hello-c-and-makefile
Last synced: 14 days ago
JSON representation
A hello world program written in C for me to practice writing GNU Makefile
- Host: GitHub
- URL: https://github.com/offchan42/hello-c-and-makefile
- Owner: offchan42
- License: gpl-3.0
- Created: 2016-09-27T17:33:07.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-02T19:13:12.000Z (about 8 years ago)
- Last Synced: 2024-03-02T00:39:02.728Z (9 months ago)
- Language: Makefile
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello-C-and-Makefile
A hello world program written in C for me to practice writing GNU Makefile## Getting started
1. Do the git clone on this repository.
2. Run `make` to build an executable **hello** file and its associated compiled files.
3. Run `./hello` to print a simple random number plus a hello world word.## Removing compiled files
Run `make clean` to remove all compiled .o filesRun `make distclean` to remove all compiled .o files including the executable **hello** file.