all make commands linux code example
Example: nake in linnux
gcc -c -Wall test1.c
gcc -c -Wall test2.c
gcc -Wall test1.o test2.o -o test
Note: make reads makefile present in current directory and executes based on statements in makefile
gcc -c -Wall test1.c
gcc -c -Wall test2.c
gcc -Wall test1.o test2.o -o test
Note: make reads makefile present in current directory and executes based on statements in makefile