diff options
author | Dan Blezek <blezek@crd.ge.com> | 2000-09-28 16:43:15 (GMT) |
---|---|---|
committer | Dan Blezek <blezek@crd.ge.com> | 2000-09-28 16:43:15 (GMT) |
commit | 8d5b1db1de08fe4fb34c872c846ccd1f2405f224 (patch) | |
tree | f98dcb64b575f5aec61dbdac9a3c519af021982a /README | |
parent | 74c1345333b456eb34480c987bc186ef2af3c536 (diff) | |
download | CMake-8d5b1db1de08fe4fb34c872c846ccd1f2405f224.zip CMake-8d5b1db1de08fe4fb34c872c846ccd1f2405f224.tar.gz CMake-8d5b1db1de08fe4fb34c872c846ccd1f2405f224.tar.bz2 |
ENH: Added note about VERBATIM targets in CMakeList.txt
Diffstat (limited to 'README')
-rw-r--r-- | README | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -54,6 +54,17 @@ CMakeLocal.make -> Place for hand configuration CMakeTargets.make -> generated rules for make style build in each directory MakefileTemplate.make -> master makefile template used by configure to generate Makefiles + +Note on adding targets inside "BEGIN/END MAKE VERBATIM" lines: + + By default, after "includ"ing a makefile, make will attempt to bring +that included file up to date. So, when you first run configure, your +makefiles will _not_ contain the target you have asked for inside the +VERBATIM tags. However, it will be added by CMake when make attempts +to bring the included make files up to date. NOTE: this will make +your head hurt if you think about it too long. Just accept that it +works to ask for a build target that does not yet exist. + Unix install: In place: ./configure |