Thread: GNU - make program, what?

  1. #1
    Registered User
    Join Date
    Mar 2010
    Posts
    94

    Question GNU - make program, what?

    (At some point you may want to learn about a program called make, which keeps track of which parts need recompiling and issues the appropriate commands for you.)

    Based on this sentences I took the curiosity to Google but I am not able to understand much

    Functions - GNU `make'

    As you can see this list is too long and seems I cannot handle them without some initial guidance.

    Thank You!

  2. #2
    Registered User
    Join Date
    Mar 2009
    Posts
    399
    Google for "makefile tutorial". There are plenty of resources that don't throw the entire manual at you straight away.

  3. #3
    spurious conceit MK27's Avatar
    Join Date
    Jul 2008
    Location
    segmentation fault
    Posts
    8,300
    make is only useful on large projects. If you are not working on a large project right now, your time is probably better spend doing/learning other things.

    Even if you are working on a large project, chances are you can just use autotools or CMake and not have to bother with writing makefiles, which are tedious.
    C programming resources:
    GNU C Function and Macro Index -- glibc reference manual
    The C Book -- nice online learner guide
    Current ISO draft standard
    CCAN -- new CPAN like open source library repository
    3 (different) GNU debugger tutorials: #1 -- #2 -- #3
    cpwiki -- our wiki on sourceforge

  4. #4
    and the Hat of Guessing tabstop's Avatar
    Join Date
    Nov 2007
    Posts
    14,336
    Quote Originally Posted by c_lady View Post
    (At some point you may want to learn about a program called make, which keeps track of which parts need recompiling and issues the appropriate commands for you.)

    Based on this sentences I took the curiosity to Google but I am not able to understand much

    Functions - GNU `make'

    As you can see this list is too long and seems I cannot handle them without some initial guidance.

    Thank You!
    You gave us a link to chapter 8 of the manual. Are we to assume that you got through chapters 1 through 7?

  5. #5
    Registered User
    Join Date
    Mar 2010
    Posts
    94
    Well I did not know anything about it! So thanks to all of you I will not spend time to investigate. I was just curious to know what is it as I was lost Thanks!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 2
    Last Post: 09-16-2009, 06:00 AM
  2. Writing a program to make a calendar
    By Northstar in forum C Programming
    Replies: 17
    Last Post: 11-07-2007, 11:34 AM
  3. Using variables in system()
    By Afro in forum C Programming
    Replies: 8
    Last Post: 07-03-2007, 12:27 PM
  4. want to make this small program...
    By psycho88 in forum C++ Programming
    Replies: 8
    Last Post: 11-30-2005, 02:05 AM