Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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 files

Run `make distclean` to remove all compiled .o files including the executable **hello** file.