config.h revision 1.29 1 1.29 rillig /* $NetBSD: config.h,v 1.29 2024/02/07 06:43:02 rillig 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.1 cgd /*
76 1.1 cgd * LIBSUFF
77 1.1 cgd * Is the suffix used to denote libraries and is used by the Suff module
78 1.1 cgd * to find the search path on which to seek any -l<xx> targets.
79 1.22 rillig */
80 1.26 rillig #define LIBSUFF ".a"
81 1.22 rillig
82 1.22 rillig /*
83 1.1 cgd * RECHECK
84 1.1 cgd * If defined, Make_Update will check a target for its current
85 1.1 cgd * modification time after it has been re-made, setting it to the
86 1.1 cgd * starting time of the make only if the target still doesn't exist.
87 1.23 rillig *
88 1.1 cgd * Unfortunately, under NFS the modification time often doesn't
89 1.1 cgd * get updated in time, so a target will appear to not have been
90 1.23 rillig * re-made, causing later targets to appear up-to-date.
91 1.23 rillig *
92 1.23 rillig * On systems that don't have this problem, you should define this.
93 1.23 rillig * Under NFS you probably should not, unless you aren't exporting jobs.
94 1.1 cgd */
95 1.26 rillig #define RECHECK
96 1.6 christos
97 1.17 ross #if defined(MAKE_NATIVE) && !defined(__ELF__)
98 1.5 christos # ifndef RANLIBMAG
99 1.5 christos # define RANLIBMAG "__.SYMDEF"
100 1.5 christos # endif
101 1.3 cgd #endif
102