From: Roland McGrath Date: Mon, 13 May 1996 18:38:15 +0000 (+0000) Subject: Sun May 12 19:19:43 1996 Aaron Digulla X-Git-Tag: 3.74.4~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=989d9ecaae9c259ca895dcbf44c47c15d41114d8;p=platform%2Fupstream%2Fmake.git Sun May 12 19:19:43 1996 Aaron Digulla * amiga.c: New function wildcard_expansion(). Allows to use Amiga wildcards with $(wildcard ) * amiga.h: New file. Prototypes for amiga.c --- diff --git a/amiga.c b/amiga.c index 26fd3ab..a163781 100644 --- a/amiga.c +++ b/amiga.c @@ -1,5 +1,5 @@ /* Running commands on Amiga -Copyright (C) 1988, 89, 90, 91, 92, 93, 94, 1995 Free Software Foundation, Inc. +Copyright (C) 1995, 1996 Free Software Foundation, Inc. This file is part of GNU Make. GNU Make is free software; you can redistribute it and/or modify @@ -17,12 +17,17 @@ along with GNU Make; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "make.h" +#include "variable.h" +#include "amiga.h" #include #include #include #include #include +static const char Amiga_version[] = "$VER: Make 3.74.3 (12.05.96) \n" + "Amiga Port by A. Digulla (digulla@home.lake.de)"; + int MyExecute (argv) char ** argv; @@ -84,3 +89,34 @@ char ** argv; return status; } + +char * +wildcard_expansion (wc, o) +char * wc, * o; +{ +# define PATH_SIZE 1024 + struct AnchorPath * apath; + + if ( (apath = AllocMem (sizeof (struct AnchorPath) + PATH_SIZE, + MEMF_CLEAR)) + ) + { + apath->ap_Strlen = PATH_SIZE; + + if (MatchFirst (wc, apath) == 0) + { + do + { + o = variable_buffer_output (o, apath->ap_Buf, + strlen (apath->ap_Buf)); + o = variable_buffer_output (o, " ",1); + } while (MatchNext (apath) == 0); + } + + MatchEnd (apath); + FreeMem (apath, sizeof (struct AnchorPath) + PATH_SIZE); + } + + return o; +} +