Please help me with Programing in C!!
Create a makefile to build your program. Add the following rule: elements elements .o elementops.o gcc -o elements elements o elementops.o Make sure the second line of your rule starts with tab and not spaces. Build your program by executing the makefile: make Does your program build successfully? The building process needs to know about the dependencies. Add the following rule to your makefile: elements o: elements. c elementops.h gcc -c elements .c Try to build your program. Is it successful? Add the last missing rule to be able to build your program successfully. (The rule to generate elementops, o is missing) Build your program again. You should get a message similar to: make elements is up to date Try the following command to simulate modifying elements .o. Remember, the touch command sets the timestamp of the file to the current time. touch elements.o Now build your program again. What files are regenerated? Now touch elementops.c, then build your program. what files are regenerated? Now touch elementops h, then build your program. What files are regenerated? Create a makefile to build your program. Add the following rule: elements elements .o elementops.o gcc -o elements elements o elementops.o Make sure the second line of your rule starts with tab and not spaces. Build your program by executing the makefile: make Does your program build successfully? The building process needs to know about the dependencies. Add the following rule to your makefile: elements o: elements. c elementops.h gcc -c elements .c Try to build your program. Is it successful? Add the last missing rule to be able to build your program successfully. (The rule to generate elementops, o is missing) Build your program again. You should get a message similar to: make elements is up to date Try the following command to simulate modifying elements .o. Remember, the touch command sets the timestamp of the file to the current time. touch elements.o Now build your program again. What files are regenerated? Now touch elementops.c, then build your program. what files are regenerated? Now touch elementops h, then build your program. What files are regenerated