File: xparams.cf

package info (click to toggle)
ivtools 0.6.2-4
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 10,236 kB
  • ctags: 31,595
  • sloc: ansic: 137,968; makefile: 20,655; cpp: 14,588; sh: 169
file content (70 lines) | stat: -rw-r--r-- 1,691 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 * Reuse some parameters that may have been defined in the X11 .cf file.
 */
#if defined(DoRanlibCmd) && !defined(HasRanlibCmd)
#define HasRanlibCmd DoRanlibCmd
#endif

#if defined(DebuggableCDebugFlags) && !defined(DebugCCFlags)
#define DebugCCFlags DebuggableCDebugFlags
#endif

#if defined(OptimizedCDebugFlags) && !defined(OptimizeCCFlags)
#define OptimizeCCFlags OptimizedCDebugFlags
#endif

#if defined(DefaultCCOptions) && !defined(ExtraCCFlags)
#define ExtraCCFlags DefaultCCOptions
#endif

#if defined(StandardDefines) && !defined(ExtraCCDefines)
#define ExtraCCDefines StandardDefines
#endif

#if defined(StandardIncludes) && !defined(ExtraCCIncludes)
#define ExtraCCIncludes StandardIncludes
#endif

#if defined(ExtraLoadFlags) && !defined(ExtraCCLdFlags)
#define ExtraCCLdFlags ExtraLoadFlags
#endif

#if defined(ExtraLibraries) && !defined(ExtraCCLdLibs)
#define ExtraCCLdLibs ExtraLibraries
#endif

/*
 * Redefine a few common macros if necessary.
 */
#ifdef UnixCpp
#undef Concat
#undef Concat3
#define Concat(a,b)a/**/b
#define Concat3(a,b,c)a/**/b/**/c
#endif

/*
 * Prevent the X11 .cf file from unintentionally overriding an IV rule
 * with the same name since most of the IV rules are different.
 */
#undef AllTarget
#undef CleanSubdirs
#undef CleanTarget
#undef ComplexProgramTarget
#undef CppScriptTarget
#undef DependSubdirs
#undef DependTarget
#undef InstallLibrary
#undef InstallMultiple
#undef InstallMultipleFlags
#undef InstallProgram
#undef InstallProgramWithFlags
#undef InstallScript
#undef InstallSubdirs
#undef MakeDir
#undef MakeDirectories
#undef MakeSubdirs
#undef MakefileTarget
#undef NormalLibraryTarget
#undef RanLibrary
#undef SimpleProgramTarget