I wonder in the installation process of configure, make, make check and make install, what does "make check" do? Thanks!
|
Strictly speaking, it doesn't necessarily do anything. If a Makefile has a target named check, then make check will "build" that target. It's typically a phony target, meaning that it is a make-scripted command rather than a file named "check" that gets created. The gnu project advises that all gnu software should include a make check target that runs post-build tests in the build directory, so |
|||
|
|
|
According to the GNU Make manual, it performs self tests on the program this makefile builds. |
|||
|
|
|
It sounds like a little background on makefiles would be good. This is a tutorial that my school uses for a programming course. Here are some good quotes:
|
|||
|
|
check. – n0rd Nov 14 '09 at 20:34