386BSD 0.1 development
[unix-history] / usr / src / usr.bin / make / nonints.h
CommitLineData
e72c71e5
WJ
1/*-
2 * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
3 * Copyright (c) 1988, 1989 by Adam de Boor
4 * Copyright (c) 1989 by Berkeley Softworks
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)nonints.h 5.6 (Berkeley) 4/18/91
39 */
40
41char **brk_string(), *emalloc(), *str_concat();
42
43ReturnStatus Arch_ParseArchive ();
44void Arch_Touch ();
45void Arch_TouchLib ();
46int Arch_MTime ();
47int Arch_MemMTime ();
48void Arch_FindLib ();
49Boolean Arch_LibOODate ();
50void Arch_Init ();
51void Compat_Run();
52void Dir_Init ();
53Boolean Dir_HasWildcards ();
54void Dir_Expand ();
55char * Dir_FindFile ();
56int Dir_MTime ();
57void Dir_AddDir ();
58ClientData Dir_CopyDir ();
59char * Dir_MakeFlags ();
60void Dir_Destroy ();
61void Dir_ClearPath ();
62void Dir_Concat ();
63int Make_TimeStamp ();
64Boolean Make_OODate ();
65int Make_HandleUse ();
66void Make_Update ();
67void Make_DoAllVar ();
68Boolean Make_Run ();
69void Job_Touch ();
70Boolean Job_CheckCommands ();
71void Job_CatchChildren ();
72void Job_CatchOutput ();
73void Job_Make ();
74void Job_Init ();
75Boolean Job_Full ();
76Boolean Job_Empty ();
77ReturnStatus Job_ParseShell ();
78int Job_End ();
79void Job_Wait();
80void Job_AbortAll ();
81void Main_ParseArgLine ();
82void Error ();
83void Fatal ();
84void Punt ();
85void DieHorribly ();
86void Finish ();
87void Parse_Error ();
88Boolean Parse_IsVar ();
89void Parse_DoVar ();
90void Parse_AddIncludeDir ();
91void Parse_File();
92Lst Parse_MainName();
93void Suff_ClearSuffixes ();
94Boolean Suff_IsTransform ();
95GNode * Suff_AddTransform ();
96void Suff_AddSuffix ();
97int Suff_EndTransform ();
98Lst Suff_GetPath ();
99void Suff_DoPaths();
100void Suff_AddInclude ();
101void Suff_AddLib ();
102void Suff_FindDeps ();
103void Suff_SetNull();
104void Suff_Init ();
105void Targ_Init ();
106GNode * Targ_NewGN ();
107GNode * Targ_FindNode ();
108Lst Targ_FindList ();
109Boolean Targ_Ignore ();
110Boolean Targ_Silent ();
111Boolean Targ_Precious ();
112void Targ_SetMain ();
113int Targ_PrintCmd ();
114char * Targ_FmtTime ();
115void Targ_PrintType ();
116char * Str_Concat ();
117int Str_Match();
118void Var_Delete();
119void Var_Set ();
120void Var_Append ();
121Boolean Var_Exists();
122char * Var_Value ();
123char * Var_Parse ();
124char * Var_Subst ();
125char * Var_GetTail();
126char * Var_GetHead();
127void Var_Init ();
128char * Str_FindSubstring();