Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Someone please EXPLAIN the process of creaiting a makefile for the following question. I DONT just need the answer ! 9. (20 points) Read the
Someone please EXPLAIN the process of creaiting a makefile for the following question. I DONT just need the answer !
9. (20 points) Read the following C source file foo.c. Write a Makefile to compile, link and execute the code. You can assume you have source files: foo.c, fool.c, fool.h, foo2.c, foo2.h Your Makefile must be able to do the following tasks when typing the command make. 1) Always execute the executable program foo if no target is specified. 2) Build necessary obj files for the program foo. 3) If a source file is modified, the corresponding obj files int main(int arge, char* argv)I and/or the executable program will be recompiled and linked. 4) Be able to compile each individual C file to an object file as a target. #include ..fool.h" #includefoo2.h" int i, sum-0; for (i=0;iStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started