1Unix Makefiles 2-------------- 3 4Generates standard UNIX makefiles. 5 6A hierarchy of UNIX makefiles is generated into the build tree. Use 7any standard UNIX-style make program to build the project through 8the ``all`` target and install the project through the ``install`` 9(or ``install/strip``) target. 10 11For each subdirectory ``sub/dir`` of the project a UNIX makefile will 12be created, containing the following targets: 13 14``all`` 15 Depends on all targets required by the subdirectory. 16 17``install`` 18 Runs the install step in the subdirectory, if any. 19 20``install/strip`` 21 Runs the install step in the subdirectory followed by a ``CMAKE_STRIP`` command, 22 if any. 23 24 The ``CMAKE_STRIP`` variable will contain the platform's ``strip`` utility, which 25 removes symbols information from generated binaries. 26 27``test`` 28 Runs the test step in the subdirectory, if any. 29 30``package`` 31 Runs the package step in the subdirectory, if any. 32