A hello world program written in C for me to practice writing GNU Makefile
- Do the git clone on this repository.
- Run
make
to build an executable hello file and its associated compiled files. - Run
./hello
to print a simple random number plus a hello world word.
Run make clean
to remove all compiled .o files
Run make distclean
to remove all compiled .o files including the executable hello file.