Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 204869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:30:21+00:00 2026-05-11T17:30:21+00:00

Support you have a C program included by some files, and some one is

  • 0

Support you have a C program included by some files, and some one is consisted by some others, so as follows:

----------------------------------------
File            | Included files           
----------------------------------------
main.c          | stdio.h, table.h
----------------------------------------
list.c          | list.h
----------------------------------------
symbol.c        | symbol.h
----------------------------------------
table.c         | table.h
----------------------------------------
table.h         | symbol.h, list.h
----------------------------------------

please help me to create a makefile, thank you very much!
This is my Makefile, but there is a problem? who can debug these problems, thanks!

hello:  main.o table.o 
    gcc main.o table.o -o hello

main.o: main.c table.h
    gcc -c main.c

table.o:    table.c table.h
    gcc -c table.c

symbol.o:   symbol.c symbol.h
    gcc -c symbol.c

list.o: list.c list.h
    gcc -c list.c


clean:
    rm hello *.o
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T17:30:21+00:00Added an answer on May 11, 2026 at 5:30 pm

    Here’s a start, not exactly how a professional would do it, but good for a beginner level:

    hello: main.o list.o symbol.o table.o
        gcc -o hello main.o list.o symbol.o table.o
    
    main.o: main.c table.h symbol.h list.h
        gcc -c -o main.o main.c
    
    list.o: list.c list.h
        gcc -c -o list.o list.c
    
    symbol.o: symbol.c symbol.h
        gcc -c -o symbol.o symbol.c
    
    table.o: table.c table.h symbol.h list.h
        gcc -c -o table.o table.c
    
    clean:
        rm hello *.o
    

    The specific problem with your given makefile is that you’re not linking in all the object files. Because main.c includes table.h and table.h includes symbol.h and list.h, your program will almost certainly need to link symbol.o and list.o as well.

    It’s also good practice to follow header dependencies (e.g., main.o depends on table.h and symbol.h/list.h because table.h depends on those two) – this is because there’s no “neat” way to get an intermediate file for header dependencies.

    And you rarely put standard headers into make files simply because they’re not expected to change – if they do (new compiler), just clean and make fresh.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 94k
  • Answers 95k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer you can set up a "middle man" page which redirects… May 11, 2026 at 6:55 pm
  • Editorial Team
    Editorial Team added an answer For general tips on working with pyserial, look at the… May 11, 2026 at 6:55 pm
  • Editorial Team
    Editorial Team added an answer This worked: this.dgridv.Columns[columnName].AutoSizeMode= DataGridViewAutoSizeColumnMode.None; this.dgridv.Columns[columnName].Width = columnWidth; To reset it… May 11, 2026 at 6:55 pm

Related Questions

I want to test some PHP on my local machine running Windows XP Professional.
I have a fairly large program written in C. It spans several files, and
Assume that you have a running SQL Server Express instance named (local)\SQLEXPRESS. Its database
If I would want to create a c# application that support multiple languages, how
Has any one used BITs in VB.NET? If so, do you have code samples

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.