Makefiles by example

刺骨的言语ヽ痛彻心扉 2021-11-02 16:48 388阅读 0赞

Compiling your source code files can be tedious, specially when you want to include several source files and have to type the compiling command everytime you want to do it.
Well, I have news for you… Your days of command line compiling are (mostly) over, because YOU will learn how to write Makefiles.
Makefiles are special format files that together with the make utility will help you to automagically build and manage your projects.

For this session you will need these files:

  • main.cpp
  • hello.cpp
  • factorial.cpp
  • functions.h

I recommend creating a new directory and placing all the files in there.

note: I use g++ for compiling. You are free to change it to a compiler of your choice

The make utility

If you run

  1. make

this program will look for a file named makefile in your directory, and then execute it.
If you have several makefiles, then you can execute them with the command:

  1. make -f MyMakefile

There are several other switches to the make utility. For more info, man make .

Build Process

  1. Compiler takes the source files and outputs object files
  2. Linker takes the object files and creates an executable

Compiling by hand

The trivial way to compile the files and obtain an executable, is by running the command:

  1. g++ main.cpp hello.cpp factorial.cpp -o hello

The basic Makefile

The basic makefile is composed of:

  1. target: dependencies
  2. [tab] system command

This syntax applied to our example would look like:

  1. all:
  2. g++ main.cpp hello.cpp factorial.cpp -o hello
  3. [Download here]

To run this makefile on your files, type:

  1. make -f Makefile-1

On this first example we see that our target is called all . This is the default target for makefiles. The make utility will execute this target if no other one is specified.
We also see that there are no dependencies for target all , so make safely executes the system commands specified.
Finally, make compiles the program according to the command line we gave it.

Using dependencies

Sometimes is useful to use different targets. This is because if you modify a single file in your project, you don’t have to recompile everything, only what you modified.
Here is an example:

  1. all: hello
  2. hello: main.o factorial.o hello.o
  3. g++ main.o factorial.o hello.o -o hello
  4. main.o: main.cpp
  5. g++ -c main.cpp
  6. factorial.o: factorial.cpp
  7. g++ -c factorial.cpp
  8. hello.o: hello.cpp
  9. g++ -c hello.cpp
  10. clean:
  11. rm -rf *o hello

[Download here ]

Now we see that the target all has only dependencies, but no system commands. In order for make to execute correctly, it has to meet all the dependencies of the called target (in this case all).
Each of the dependencies are searched through all the targets available and executed if found.
In this example we see a target called clean. It is useful to have such target if you want to have a fast way to get rid of all the object files and executables.

Using variables and comments

You can also use variables when writing Makefiles. It comes in handy in situations where you want to change the compiler, or the compiler options.

  1. # I am a comment, and I want to say that the variable CC will be
  2. # the compiler to use.
  3. CC=g++
  4. # Hey!, I am comment number 2. I want to say that CFLAGS will be the
  5. # options I'll pass to the compiler.
  6. CFLAGS=-c -Wall
  7. all: hello
  8. hello: main.o factorial.o hello.o
  9. $(CC) main.o factorial.o hello.o -o hello
  10. main.o: main.cpp
  11. $(CC) $(CFLAGS) main.cpp
  12. factorial.o: factorial.cpp
  13. $(CC) $(CFLAGS) factorial.cpp
  14. hello.o: hello.cpp
  15. $(CC) $(CFLAGS) hello.cpp
  16. clean:
  17. rm -rf *o hello
  18. [Download here]

As you can see, variables can be very useful sometimes. To use them, just assign a value to a variable before you start to write your targets. After that, you can just use them with the dereference operator $(VAR).

Where to go from here

With this brief introduction to Makefiles, you can create some very sophisticated mechanism for compiling your projects. However, this is just a tip of the iceberg. I don’t expect anyone to fully understand the example presented below without having consulted some Make documentation (which I had to do myself) or read pages 347 to 354 of your Unix book.

CC=g++

  1. CFLAGS=-c -Wall
  2. LDFLAGS=
  3. SOURCES=main.cpp hello.cpp factorial.cpp
  4. OBJECTS=$(SOURCES:.cpp=.o)
  5. EXECUTABLE=hello
  6. all: $(SOURCES) $(EXECUTABLE)
  7. $(EXECUTABLE): $(OBJECTS)
  8. $(CC) $(LDFLAGS) $(OBJECTS) -o $@
  9. .cpp.o:
  10. $(CC) $(CFLAGS) $< -o $@

[Download here ]

If you understand this last example, you could adapt it to your own personal projects changing only 2 lines, no matter how many additional files you have !!!.

转载于:https://www.cnblogs.com/nickchan/archive/2012/03/12/3104434.html

发表评论

表情:
评论列表 (有 0 条评论,388人围观)

还没有评论,来说两句吧...

相关阅读