3 #+AUTHOR: Steven Baltakatei Sandoval
5 #+EMAIL: baltakatei@gmail.com
8 This repository contains practice code and examples as I learn how to
11 ** Compiling Procedure
12 *** Compiling with ~gcc~
13 See [[https://www.linuxtopia.org/online_books/an_introduction_to_gcc/gccintro_9.html][ref]].
15 : $ gcc -Wall -o hello.c hello
17 *** Managing compiling with ~make~
18 Create ~Makefile~ to specify compile options.
22 CFLAGS=-Wall -Wextra -pedantic
27 $(CC) $(CFLAGS) -o $(OUTFILE) $(SOURCE)
33 Then, run the file named ~Makefile~ via ~make all~ or simply ~make~.