Replaced 'ignore' spec file directive by the -i option.

diff --git a/tools/winebuild/parser.c b/tools/winebuild/parser.c
index 44690df..59bbaee 100644
--- a/tools/winebuild/parser.c
+++ b/tools/winebuild/parser.c
@@ -127,24 +127,6 @@
 
 
 /*******************************************************************
- *         ParseIgnore
- *
- * Parse an 'ignore' definition.
- */
-static void ParseIgnore(void)
-{
-    const char *token = GetToken(0);
-    if (*token != '(') fatal_error( "Expected '(' got '%s'\n", token );
-    for (;;)
-    {
-        token = GetToken(0);
-        if (*token == ')') break;
-        add_ignore_symbol( token );
-    }
-}
-
-
-/*******************************************************************
  *         ParseVariable
  *
  * Parse a variable definition.
@@ -501,13 +483,7 @@
 
     while ((token = GetToken(1)) != NULL)
     {
-        if (strcmp(token, "ignore") == 0)
-        {
-            if (SpecType != SPEC_WIN32)
-                fatal_error( "'ignore' only supported for Win32 spec files\n" );
-            ParseIgnore();
-        }
-        else if (strcmp(token, "@") == 0)
+        if (strcmp(token, "@") == 0)
 	{
             if (SpecType != SPEC_WIN32)
                 fatal_error( "'@' ordinals not supported for Win16\n" );