make vs shell

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mar11
    New Member
    • Sep 2009
    • 38

    make vs shell

    Hi,

    i hope i am here in the right place!!


    what is the difference between Make and shell?

    thanks
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    Make is a general utility used for controling the complation and linking of programs.

    Shell is the command line interface of the computer.

    Comment

    • mar11
      New Member
      • Sep 2009
      • 38

      #3
      makefile

      dose the Make script have one commands or it can share the command of shell scripting too??

      thanks

      Comment

      • Banfa
        Recognized Expert Expert
        • Feb 2006
        • 9067

        #4
        What the make script can contain rather depends on whos make utility you are using.

        Comment

        • mar11
          New Member
          • Sep 2009
          • 38

          #5
          is that mean that the makefile can contain any commands of any other scripting languages like shell and Perl??

          Comment

          • Banfa
            Recognized Expert Expert
            • Feb 2006
            • 9067

            #6
            No it means what it says, what you put in a make is dependent on whos make utility you are using.

            Most make utilities can call to the shell and run third party programs (like compilers for instance).

            Comment

            Working...