1CHEATMAKE(1) CHEATMAKE(1)
2
3
4
6 cheatmake - fool make into not rebuilding certain files
7
9 cheatmake [hidechangefile] [show] [whyfile]
10
11
13 cheatmake is used to save time when recompiling. It can fool make into
14 skipping files that haven't changed in a meaningful way. This can be
15 used for instance when you change a comment in a file but none of the
16 actual code.
17
18
19 This utility is part of the KDE Software Development Kit.
20
21
23 hidechange file
24 Hides the fact that file was changed by setting the timestamp
25 into the past. Use with care!
26
27
28 show Lists what files make currently needs to rebuild
29
30
31 why file
32 Explains why make must rebuild file
33
34
36 One of the following variables (but not both) should be set if the
37 source directory is different from the build directory. If the build
38 directory is simply a subdirectory of the source directory, the simpler
39 variable OBJ_SUBDIR should be used.
40
41
42 OBJ_SUBJDIR
43 Indicates that the build directory is in the given subdirectory
44 of the source directory. For instance, if the source directory
45 is kdesdk and the build directory is kdesdk/obj-i386-linux, then
46 OBJ_SUBDIR should be set to obj-i386-linux.
47
48
49 OBJ_REPLACEMENT
50 A sed expression that is used to transform the source directory
51 into the build directory. For instance, if the source directory
52 is kdesdk/obj-i386-linux, then OBJ_REPLACEMENT should be set to
53 s#kdesdk#kdesdk-obj#.
54
55
57 make(1)
58
59
61 cheatmake was written by David Faure <faure@kde.org>. This manual page
62 was prepared by Ben Burton <bab@debian.org> for the Debian GNU/Linux®
63 system (but may be used by others).
64
65
66
67
68 March 8, 2003 CHEATMAKE(1)