CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2014
    Posts
    35

    how to build C Source code with Makefile


  2. #2
    Join Date
    May 2009
    Location
    Boston
    Posts
    364

    Re: how to build C Source code with Makefile

    You typically build with a makefile using the command,
    Code:
    make -f ./make_file_name all
    run from the directory containing the make file.

    You should post your make file as text in [code] tags or as an attachment and not as a link. Whether or not your makefile will run without error depends on many factors that can be examined once the makefile is available.

    LMHmedchem

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