I'm a relative beginner to C and I need to learn how makefiles work and I'm a bit confused on how the combination of C files work. Say we have a main.c, a foo.c, and a bar.c. How should the code be written so that main.c recognizes functions in the other files? Also, in foo.c and bar.c, is all of the code written in the main function there or do we need to write other functions for what we need them to do? I've read tutorials on how makefiles are written, and it makes sense for the most part, but I'm still a bit confused on the basic logistics of it.
|
Generally what will happen is you will define your functions for the other files in a header file, which can then be included in main.c. For example, consider these snippets: main.c:
foo.h:
foo.c:
What will happen is that main.c will be turned into an object file (main.o), and foo.c will be turned into an object file (foo.o). Then the linker will link these two files together and that is where the Example GCC command: gcc -o myprogram main.c foo.c Example makefile
|
|||
|
|
About C/C++ compilationWhen you have a set of files, you usually do 2 things:
The source files are independent - you need header files to be able to provide the "information" (declarations) about functions in a given module in order to let any other module use them. Header files are not compiled by themselves - they are Have a look below on how the commands for that look like and how they are handled by About makefilesMakefile is a set of targets and rules to build them. A target is "something which can be built and results in a given file". (There exist also "phony" targets which don't result in a file and just are there to execute commands - a common one is called Each target has 2 parts:
Consider this example:
This means that: "To build the file This can be also rewritten as:
The variables (everything starting with You can define your own variables and expand them as follows:
You compile individual translation units as follows:
You can add header dependencies to rebuild main.o when either main.c or any of its headers change:
In order not to write the same command over and over again, you can define a general rule and just supply the dependencies (if you want):
There's also some magic to generate the dependencies automatically (see link). One of the downsides of using Make is that it doesn't do it by itself (as some building systems do - like SCons which I prefer for C/C++). |
|||
|
|
|
Functions in Makefiles define targets. For simple programs, you can just have a single target that compiles the whole thing. More complex (read: bigger) programs can have intermediate targets (like foo.o) that will let Here's a very simple example: main.c:
foo.c:
foo.h:
Makefile:
Then you can run |
|||||||||
|
|
Make has little to do with the structure of a C program. All make does is define a dependency tree and execute commands when it finds the dependencies are out of whack. My saying, in a makefile:
simply sez: foo.exe is dependent on foo.c, bar.c and baz.c. This, sotto vocce, gets expanded, using make's default rule set, to something like:
Make simply walks the dependency tree starting at its root (in this case, foo.exe). If a target doesn't exist or if one of the objects upon which it depends is newer than the target, the associated commands are executed. to make the dependency correct. See Managing Projects with Make from O'Reilly for more than you probably want to know. As far as the second part of your question goes, the answer is just two letters: K and R. Their The C Programming Language is arguably one of the best computer programming books ever written.
|
|||
|
|
|
In essence a makefile comprises of rules of the form:
You normally have at least one high level target, if any of its dependencies do not exist, make looks for a rule that has that file as a target. It does this recursively until it has resolved all dependencies of the top-level target, before executing the top-level command (if there is one - both dependencies and command are optional fields in a rule) A make file can have 'default rules' based on patterns, and there are built-in macros for various file matching scenarios as well as user define macros and inclusion of nested makefiles. I have simplified the above rule form to the most usual case. In fact the command need not create the target at all, it is simply a command to be executed once all the files in the dependency are present. Moreover the target need not be a file either. Often the top level target is a 'dummy' target called "all" or similar. There are of course many subtleties and nuances to make, all detailed in the manual (GNU make specifically, there are other make utilities). |
||||
|
|


mainfunction in more than one file that gets compiled into the same target, as then you’ll have two functions with the same name. – Jeff Kelley Dec 3 '10 at 20:33