+ Reply to Thread
Results 1 to 3 of 3

Thread: Linux Makefile Tutorial

  1. #1
    Jordan Guest

    Linux Makefile Tutorial

    The guide deals with the Linux make command and makefiles that form the integral part of the compilation process


    Introduction
    The make program essentially is used to update targets (exe or object files) according to the dependency instructions, typically present in a file called makefile. The program automatically can link dependent modules and also decide which files are to be (re)compiled by looking at the object code timestamps. Essentially make allows the compilation process to be a breeze.


    Makefile Description
    The makefile contains all the dependency information required for compiling. The file is typically denoted as makefile or Makefile. This however can be overridden by specifying the file name with the -f switch. The instructions are written in single lines and interpreted accordingly. A backslash (\) can be used to signify continuation of the line.

    The target is the final output that is required at the end of the make process. It typically is reliant on many other files to have compiled successfully. Target compilation are carried out by a series of actions called as command. Rule can be composed of multiple commands but each starting with a tab character.

    Makefile has the feature of using variables, like in other programming languages. A variable is defined as:

    variable_name = variable_definition
    $(variable_name) is used to use its value.

    Also like C/C++ make has the capability of including files by:

    Code:
    include file_name
    Make software also has set of internal macros:

    $+
    List of all the defined dependencies, space separated, with duplicates

    $^
    List of all the defined dependencies, space separated, without duplicates

    $@
    Contains the name of the current target

    $<
    Current prerequisite modified later than the current target


    Make Options
    The makefile typically has the contents are specified below:

    Empty Lines
    Lines with no text are ignored
    #
    Pound acts as a start of comments (single-line) indicator
    Dependencies

    targets: dependency; commands


    Here the targets and their dependencies are specified. If the dependent files have not been created or a newer version of their source code exists, then the files are regenerated. These can be followed by one or more commands. If there are no dependencies then the commands are executed always.


    Make Options
    -f makefile
    The specified makefile is used as the description file

    -h
    Print the help information

    -i
    Ignore any errors

    -n
    Prints the command that will be executed. For testing the flow of the compilation process.

    -q
    Returns 0 if the target file is up to date; non-zero if otherwise

    -p
    Prints out the variables and settings existing by default


    Running Make
    Now to put all the above options to use. We will build a descriptor file to build an exe called sampleexec. Also assume that it needs two source files src1.c and src2.c. To build a descriptor for this and save it in a file called makefile.

    The makefile will look like this
    Code:
         sampleexec : src1.o src2.o 
                 gcc -o sampleexec src1.o src2.o
    
         src1.o : src1.c 
                 gcc -c src1.c
    
         src2.o : src2.c 
                 gcc -c src2.c
    To compile just run:
    Code:
    # make
    Steps make takes to compile sampleexec:

    1. sees that sampleexec depends on the object files src1.o src2.o
    2. looks for the target definition of the two object files.
    3. sees that src1.o depends on the file src1.c
    4. executes the commands given in src1.o's rule and compiles src1.c to get the object file.
    5. similarly looks at the target src2.o and compiles the object files
    6. prepares sampleexc by combining the two object files

    This way any changes to the project can be done just to one file. This way errors and rework is reduced by a lot.

    If you have any questions, please feel free to post them here!

  2. CODECALL Circuit advertisement

     
  3. #2
    v0id is offline Retired
    Join Date
    Apr 2007
    Posts
    2,937
    Blog Entries
    3
    Rep Power
    42
    Make is really a great job, and any programmer of a compiled language should learn how to use them. I find it easier to use makefiles, than using an IDE, which makes them automagically, because you get more control of it.

  4. #3
    whwmia's Avatar
    whwmia is offline Newbie
    Join Date
    Aug 2009
    Posts
    24
    Rep Power
    0

    Re: Linux Makefile Tutorial

    Very nice ! Thank you !

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 3 users browsing this thread. (0 members and 3 guests)

Similar Threads

  1. Re: Linux Makefile Tutorial
    By rock in forum C and C++
    Replies: 1
    Last Post: 01-18-2011, 02:17 PM
  2. please help with the Makefile
    By alice06 in forum C and C++
    Replies: 4
    Last Post: 10-07-2010, 05:42 AM
  3. how to use makefile?
    By simplytuff in forum C and C++
    Replies: 4
    Last Post: 09-04-2010, 08:04 AM
  4. Help me in executing MAKEFILE?
    By kashiqirphan in forum Java Help
    Replies: 1
    Last Post: 01-29-2009, 08:07 AM
  5. Tutorial: IPTABLES - Linux Firewall Configuration
    By Jordan in forum Linux Tutorials, Guides and Tips
    Replies: 2
    Last Post: 06-20-2008, 09:57 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts