This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Suppose we have two or more file to compile | |
# Suppose we need to include the necessary libraries for the same | |
# Eg : gcc -o obj ojb.c objfunc.c -I | |
# Everytime we make changes to our code or if we change our system. We have re-run the command which is not best use of our time | |
# This is where makefile comes into limelight. We just go to directory which has makefile and type command $make and its done | |
# This might look small but while handling long repos/directories/files we need something easy and user friendly. So makefile | |
# Steps for building makefile |