config.h revision 1.17 1 1.17 ross /* $NetBSD: config.h,v 1.17 2004/05/07 00:04:38 ross Exp $ */
2 1.4 christos
3 1.1 cgd /*
4 1.1 cgd * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
5 1.16 agc *
6 1.16 agc * This code is derived from software contributed to Berkeley by
7 1.16 agc * Adam de Boor.
8 1.16 agc *
9 1.16 agc * Redistribution and use in source and binary forms, with or without
10 1.16 agc * modification, are permitted provided that the following conditions
11 1.16 agc * are met:
12 1.16 agc * 1. Redistributions of source code must retain the above copyright
13 1.16 agc * notice, this list of conditions and the following disclaimer.
14 1.16 agc * 2. Redistributions in binary form must reproduce the above copyright
15 1.16 agc * notice, this list of conditions and the following disclaimer in the
16 1.16 agc * documentation and/or other materials provided with the distribution.
17 1.16 agc * 3. Neither the name of the University nor the names of its contributors
18 1.16 agc * may be used to endorse or promote products derived from this software
19 1.16 agc * without specific prior written permission.
20 1.16 agc *
21 1.16 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.16 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.16 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.16 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.16 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.16 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.16 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.16 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.16 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.16 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.16 agc * SUCH DAMAGE.
32 1.16 agc *
33 1.16 agc * from: @(#)config.h 8.1 (Berkeley) 6/6/93
34 1.16 agc */
35 1.16 agc
36 1.16 agc /*
37 1.1 cgd * Copyright (c) 1988, 1989 by Adam de Boor
38 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
39 1.1 cgd * All rights reserved.
40 1.1 cgd *
41 1.1 cgd * This code is derived from software contributed to Berkeley by
42 1.1 cgd * Adam de Boor.
43 1.1 cgd *
44 1.1 cgd * Redistribution and use in source and binary forms, with or without
45 1.1 cgd * modification, are permitted provided that the following conditions
46 1.1 cgd * are met:
47 1.1 cgd * 1. Redistributions of source code must retain the above copyright
48 1.1 cgd * notice, this list of conditions and the following disclaimer.
49 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
50 1.1 cgd * notice, this list of conditions and the following disclaimer in the
51 1.1 cgd * documentation and/or other materials provided with the distribution.
52 1.1 cgd * 3. All advertising materials mentioning features or use of this software
53 1.1 cgd * must display the following acknowledgement:
54 1.1 cgd * This product includes software developed by the University of
55 1.1 cgd * California, Berkeley and its contributors.
56 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
57 1.1 cgd * may be used to endorse or promote products derived from this software
58 1.1 cgd * without specific prior written permission.
59 1.1 cgd *
60 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
61 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
62 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
63 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
64 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
65 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
66 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
67 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
68 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
69 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
70 1.1 cgd * SUCH DAMAGE.
71 1.1 cgd *
72 1.7 christos * from: @(#)config.h 8.1 (Berkeley) 6/6/93
73 1.1 cgd */
74 1.1 cgd
75 1.15 sjg #ifndef DEFSHELL
76 1.1 cgd #define DEFSHELL 1 /* Bourne shell */
77 1.15 sjg #endif
78 1.1 cgd
79 1.1 cgd /*
80 1.1 cgd * DEFMAXJOBS
81 1.1 cgd * DEFMAXLOCAL
82 1.1 cgd * These control the default concurrency. On no occasion will more
83 1.1 cgd * than DEFMAXJOBS targets be created at once (locally or remotely)
84 1.1 cgd * DEFMAXLOCAL is the highest number of targets which will be
85 1.1 cgd * created on the local machine at once. Note that if you set this
86 1.1 cgd * to 0, nothing will ever happen...
87 1.1 cgd */
88 1.1 cgd #define DEFMAXJOBS 4
89 1.1 cgd #define DEFMAXLOCAL 1
90 1.1 cgd
91 1.1 cgd /*
92 1.1 cgd * INCLUDES
93 1.1 cgd * LIBRARIES
94 1.1 cgd * These control the handling of the .INCLUDES and .LIBS variables.
95 1.1 cgd * If INCLUDES is defined, the .INCLUDES variable will be filled
96 1.1 cgd * from the search paths of those suffixes which are marked by
97 1.1 cgd * .INCLUDES dependency lines. Similarly for LIBRARIES and .LIBS
98 1.1 cgd * See suff.c for more details.
99 1.1 cgd */
100 1.1 cgd #define INCLUDES
101 1.1 cgd #define LIBRARIES
102 1.1 cgd
103 1.1 cgd /*
104 1.1 cgd * LIBSUFF
105 1.1 cgd * Is the suffix used to denote libraries and is used by the Suff module
106 1.1 cgd * to find the search path on which to seek any -l<xx> targets.
107 1.1 cgd *
108 1.1 cgd * RECHECK
109 1.1 cgd * If defined, Make_Update will check a target for its current
110 1.1 cgd * modification time after it has been re-made, setting it to the
111 1.1 cgd * starting time of the make only if the target still doesn't exist.
112 1.1 cgd * Unfortunately, under NFS the modification time often doesn't
113 1.1 cgd * get updated in time, so a target will appear to not have been
114 1.1 cgd * re-made, causing later targets to appear up-to-date. On systems
115 1.1 cgd * that don't have this problem, you should defined this. Under
116 1.1 cgd * NFS you probably should not, unless you aren't exporting jobs.
117 1.1 cgd */
118 1.1 cgd #define LIBSUFF ".a"
119 1.1 cgd #define RECHECK
120 1.6 christos
121 1.6 christos /*
122 1.6 christos * POSIX
123 1.6 christos * Adhere to the POSIX 1003.2 draft for the make(1) program.
124 1.6 christos * - Use MAKEFLAGS instead of MAKE to pick arguments from the
125 1.6 christos * environment.
126 1.6 christos * - Allow empty command lines if starting with tab.
127 1.6 christos */
128 1.6 christos #define POSIX
129 1.6 christos
130 1.6 christos /*
131 1.7 christos * SYSVINCLUDE
132 1.6 christos * Recognize system V like include directives [include "filename"]
133 1.6 christos * SYSVVARSUB
134 1.6 christos * Recognize system V like ${VAR:x=y} variable substitutions
135 1.6 christos */
136 1.7 christos #define SYSVINCLUDE
137 1.6 christos #define SYSVVARSUB
138 1.6 christos
139 1.6 christos /*
140 1.6 christos * SUNSHCMD
141 1.6 christos * Recognize SunOS and Solaris:
142 1.6 christos * VAR :sh= CMD # Assign VAR to the command substitution of CMD
143 1.6 christos * ${VAR:sh} # Return the command substitution of the value
144 1.6 christos * # of ${VAR}
145 1.6 christos */
146 1.6 christos #define SUNSHCMD
147 1.10 christos
148 1.10 christos /*
149 1.10 christos * USE_PGRP
150 1.10 christos * Kill the process group of the job so that all the progeny of the
151 1.10 christos * current job dies, instead of just the one forked.
152 1.10 christos */
153 1.10 christos #define USE_PGRP
154 1.11 christos
155 1.11 christos /*
156 1.11 christos * USE_IOVEC
157 1.11 christos * We have writev(2)
158 1.11 christos */
159 1.11 christos #define USE_IOVEC
160 1.3 cgd
161 1.17 ross #if defined(MAKE_NATIVE) && !defined(__ELF__)
162 1.5 christos # ifndef RANLIBMAG
163 1.5 christos # define RANLIBMAG "__.SYMDEF"
164 1.5 christos # endif
165 1.3 cgd #endif
166