]> git.sur5r.net Git - cc65/commitdiff
Added the lynx target
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 8 Oct 2004 09:23:59 +0000 (09:23 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 8 Oct 2004 09:23:59 +0000 (09:23 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3218 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/main.c
src/cc65/main.c

index 199fa2310e7c679957efa44b1908a1149454fe2c..e1d67a838dd1c1f653c614bca1dff7acb047592b 100644 (file)
@@ -168,7 +168,7 @@ static void CBMSystem (const char* Sys)
 }
 
 
-                     
+
 static void SetSys (const char* Sys)
 /* Define a target system */
 {
@@ -254,6 +254,10 @@ static void SetSys (const char* Sys)
             NewSymbol ("__SUPERVISION__", 1);
             break;
 
+        case TGT_LYNX:
+            NewSymbol ("__LYNX__", 1);
+            break;
+
        default:
             AbEnd ("Invalid target name: `%s'", Sys);
 
@@ -310,7 +314,7 @@ static void DefineSymbol (const char* Def)
            }
                }
     }
-                     
+
     /* Define the new symbol */
     NewSymbol (SymName, Val);
 }
index 787dec0a49f6c4333c1350f53b37c1f46129a80c..8d54432341fe8e37a34e7a99ff52de7acca9d9c6 100644 (file)
@@ -229,7 +229,7 @@ static void SetSys (const char* Sys)
             DefineNumericMacro ("__SUPERVISION__", 1);
             break;
 
-        case TGT_SUPERVISION:
+        case TGT_LYNX:
             DefineNumericMacro ("__LYNX__", 1);
             break;
 
@@ -730,7 +730,7 @@ int main (int argc, char* argv[])
 
     /* Initialize the default segment names */
     InitSegNames ();
-                                       
+
     /* Initialize the include search paths */
     InitIncludePaths ();