Updated documentation to fix Savannah bugs #32058 and #31582
[make.git] / amiga.c
blob6e70f65996962458e5013d3aa56f458e1787ca57
1 /* Running commands on Amiga
2 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4 This file is part of GNU Make.
6 GNU Make is free software; you can redistribute it and/or modify it under the
7 terms of the GNU General Public License as published by the Free Software
8 Foundation; either version 3 of the License, or (at your option) any later
9 version.
11 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along with
16 this program. If not, see <http://www.gnu.org/licenses/>. */
18 #include "make.h"
19 #include "variable.h"
20 #include "amiga.h"
21 #include <assert.h>
22 #include <exec/memory.h>
23 #include <dos/dostags.h>
24 #include <proto/exec.h>
25 #include <proto/dos.h>
27 static const char Amiga_version[] = "$VER: Make 3.74.3 (12.05.96) \n"
28 "Amiga Port by A. Digulla (digulla@home.lake.de)";
30 int
31 MyExecute (char **argv)
33 char * buffer, * ptr;
34 char ** aptr;
35 int len = 0;
36 int status;
38 for (aptr=argv; *aptr; aptr++)
40 len += strlen (*aptr) + 4;
43 buffer = AllocMem (len, MEMF_ANY);
45 if (!buffer)
46 fatal (NILF, "MyExecute: Cannot allocate space for calling a command");
48 ptr = buffer;
50 for (aptr=argv; *aptr; aptr++)
52 if (((*aptr)[0] == ';' && !(*aptr)[1]))
54 *ptr ++ = '"';
55 strcpy (ptr, *aptr);
56 ptr += strlen (ptr);
57 *ptr ++ = '"';
59 else if ((*aptr)[0] == '@' && (*aptr)[1] == '@' && !(*aptr)[2])
61 *ptr ++ = '\n';
62 continue;
64 else
66 strcpy (ptr, *aptr);
67 ptr += strlen (ptr);
69 *ptr ++ = ' ';
70 *ptr = 0;
73 ptr[-1] = '\n';
75 status = SystemTags (buffer,
76 SYS_UserShell, TRUE,
77 TAG_END);
79 FreeMem (buffer, len);
81 if (SetSignal(0L,0L) & SIGBREAKF_CTRL_C)
82 status = 20;
84 /* Warnings don't count */
85 if (status == 5)
86 status = 0;
88 return status;
91 char *
92 wildcard_expansion (char *wc, char *o)
94 # define PATH_SIZE 1024
95 struct AnchorPath * apath;
97 if ( (apath = AllocMem (sizeof (struct AnchorPath) + PATH_SIZE,
98 MEMF_CLEAR))
101 apath->ap_Strlen = PATH_SIZE;
103 if (MatchFirst (wc, apath) == 0)
107 o = variable_buffer_output (o, apath->ap_Buf,
108 strlen (apath->ap_Buf));
109 o = variable_buffer_output (o, " ",1);
110 } while (MatchNext (apath) == 0);
113 MatchEnd (apath);
114 FreeMem (apath, sizeof (struct AnchorPath) + PATH_SIZE);
117 return o;