CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2000
    Location
    England
    Posts
    574

    MAKE Files ???? Please Help ?

    Hi
    im trying to learn about Make files and cant really find any info
    can anybody offer some help and examples to understand ?

    thanks


  2. #2
    Join Date
    Jun 2002
    Location
    Letchworth, UK
    Posts
    1,020
    Lookup "make tutorial" on the net. There are lots of hits. A relatively good one can be found in


    http://www.eng.hawaii.edu/Tutor/Make/

    Basically makefiles use the following structure

    Definitions
    Target
    Dependencies

    The target is the first item to be made that ends with a colon. You can bypass this by providing a command line target.
    Succinct is verbose for terse

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured