A tool used to assist in compiling and lining C code.
Example
all: hellow
hellow: hellow.c
gcc -o hellow hellow.c
clean:
rm -f hellowHas commands:
make allmake hellowmake clean
A tool used to assist in compiling and lining C code.
all: hellow
hellow: hellow.c
gcc -o hellow hellow.c
clean:
rm -f hellowHas commands:
make allmake hellowmake clean