]> git.sur5r.net Git - cc65/blob - src/cl65/main.c
Added .a65 as an assembler extension
[cc65] / src / cl65 / main.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  main.c                                   */
4 /*                                                                           */
5 /*             Main module for the cl65 compile and link utility             */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1999-2000 Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@musoftware.de                                            */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <ctype.h>
40 #include <errno.h>
41 #if defined(__WATCOMC__) || defined(_MSC_VER)
42 #  include <process.h>          /* DOS, OS/2 and Windows */
43 #else
44 #  include "spawn.h"            /* All others */
45 #endif
46
47 /* common */
48 #include "cmdline.h"
49 #include "fname.h"
50 #include "target.h"
51 #include "version.h"
52 #include "xmalloc.h"
53
54 /* cl65 */
55 #include "global.h"
56 #include "error.h"
57
58
59
60 /*****************************************************************************/
61 /*                                   Data                                    */
62 /*****************************************************************************/
63
64
65
66 /* Struct that describes a command */
67 typedef struct CmdDesc_ CmdDesc;
68 struct CmdDesc_ {
69     char*       Name;           /* The command name */
70
71     unsigned    ArgCount;       /* Count of arguments */
72     unsigned    ArgMax;         /* Maximum count of arguments */
73     char**      Args;           /* The arguments */
74
75     unsigned    FileCount;      /* Count of files to translate */
76     unsigned    FileMax;        /* Maximum count of files */
77     char**      Files;          /* The files */
78 };
79
80 /* Command descriptors for the different programs */
81 static CmdDesc CC65 = { 0, 0, 0, 0, 0, 0, 0 };
82 static CmdDesc CA65 = { 0, 0, 0, 0, 0, 0, 0 };
83 static CmdDesc LD65 = { 0, 0, 0, 0, 0, 0, 0 };
84 static CmdDesc GRC  = { 0, 0, 0, 0, 0, 0, 0 };
85
86 /* File types */
87 enum {
88     FILETYPE_UNKNOWN,
89     FILETYPE_C,
90     FILETYPE_ASM,
91     FILETYPE_OBJ,
92     FILETYPE_LIB,
93     FILETYPE_GR                 /* GEOS resource file */
94 };
95
96 /* Default file type, used if type unknown */
97 static unsigned DefaultFileType = FILETYPE_UNKNOWN;
98
99 /* Variables controlling the steps we're doing */
100 static int DontLink     = 0;
101 static int DontAssemble = 0;
102
103 /* The name of the output file, NULL if none given */
104 static const char* OutputName = 0;
105
106 /* The name of the linker configuration file if given */
107 static const char* LinkerConfig = 0;
108
109 /* The name of the first input file. This will be used to construct the
110  * executable file name if no explicit name is given.
111  */
112 static const char* FirstInput = 0;
113
114 /* Name of the crt0 object file and the runtime library */
115 static char* TargetCRT0 = 0;
116 static char* TargetLib  = 0;
117
118
119
120 /*****************************************************************************/
121 /*                           Determine a file type                           */
122 /*****************************************************************************/
123
124
125
126 static unsigned GetFileType (const char* File)
127 /* Determine the type of the given file */
128 {
129     /* Table mapping extensions to file types */
130     static const struct {
131         const char*     Ext;
132         unsigned        Type;
133     } FileTypes [] = {
134         {   ".c",       FILETYPE_C      },
135         {   ".s",       FILETYPE_ASM    },
136         {   ".asm",     FILETYPE_ASM    },
137         {   ".a65",     FILETYPE_ASM    },
138         {   ".o",       FILETYPE_OBJ    },
139         {   ".obj",     FILETYPE_OBJ    },
140         {   ".a",       FILETYPE_LIB    },
141         {   ".lib",     FILETYPE_LIB    },
142         {   ".grc",     FILETYPE_GR     },
143     };
144
145     unsigned I;
146
147     /* Determine the file type by the extension */
148     const char* Ext = FindExt (File);
149
150     /* Do we have an extension? */
151     if (Ext == 0) {
152         return DefaultFileType;
153     }
154
155     /* Check for known extensions */
156     for (I = 0; I < sizeof (FileTypes) / sizeof (FileTypes [0]); ++I) {
157         if (strcmp (FileTypes [I].Ext, Ext) == 0) {
158             /* Found */
159             return FileTypes [I].Type;
160         }
161     }
162
163     /* Not found, return the default */
164     return DefaultFileType;
165 }
166
167
168
169 /*****************************************************************************/
170 /*                        Command structure handling                         */
171 /*****************************************************************************/
172
173
174
175 static void CmdAddArg (CmdDesc* Cmd, const char* Arg)
176 /* Add a new argument to the command */
177 {
178     /* Expand the argument vector if needed */
179     if (Cmd->ArgCount == Cmd->ArgMax) {
180         unsigned NewMax  = Cmd->ArgMax + 10;
181         char**   NewArgs = xmalloc (NewMax * sizeof (char*));
182         memcpy (NewArgs, Cmd->Args, Cmd->ArgMax * sizeof (char*));
183         xfree (Cmd->Args);
184         Cmd->Args   = NewArgs;
185         Cmd->ArgMax = NewMax;
186     }
187
188     /* Add a copy of the new argument, allow a NULL pointer */
189     if (Arg) {
190         Cmd->Args [Cmd->ArgCount++] = xstrdup (Arg);
191     } else {
192         Cmd->Args [Cmd->ArgCount++] = 0;
193     }
194 }
195
196
197
198 static void CmdDelArgs (CmdDesc* Cmd, unsigned LastValid)
199 /* Remove all arguments with an index greater than LastValid */
200 {
201     while (Cmd->ArgCount > LastValid) {
202         Cmd->ArgCount--;
203         xfree (Cmd->Args [Cmd->ArgCount]);
204         Cmd->Args [Cmd->ArgCount] = 0;
205     }
206 }
207
208
209
210 static void CmdAddFile (CmdDesc* Cmd, const char* File)
211 /* Add a new file to the command */
212 {
213     /* Expand the file vector if needed */
214     if (Cmd->FileCount == Cmd->FileMax) {
215         unsigned NewMax   = Cmd->FileMax + 10;
216         char**   NewFiles = xmalloc (NewMax * sizeof (char*));
217         memcpy (NewFiles, Cmd->Files, Cmd->FileMax * sizeof (char*));
218         xfree (Cmd->Files);
219         Cmd->Files   = NewFiles;
220         Cmd->FileMax = NewMax;
221     }
222
223     /* If the file name is not NULL (which is legal and is used to terminate
224      * the file list), check if the file name does already exist in the file
225      * list and print a warning if so. Regardless of the search result, add
226      * the file.
227      */
228     if (File) {
229         unsigned I;
230         for (I = 0; I < Cmd->FileCount; ++I) {
231             if (strcmp (Cmd->Files[I], File) == 0) {
232                 /* Duplicate file */
233                 Warning ("Duplicate file in argument list: `%s'", File);
234                 /* No need to search further */
235                 break;
236             }
237         }
238
239         /* Add the file */
240         Cmd->Files [Cmd->FileCount++] = xstrdup (File);
241     } else {
242         /* Add a NULL pointer */
243         Cmd->Files [Cmd->FileCount++] = 0;
244     }
245 }
246
247
248
249 static void CmdInit (CmdDesc* Cmd, const char* Path)
250 /* Initialize the command using the given path to the executable */
251 {
252     /* Remember the command */
253     Cmd->Name = xstrdup (Path);
254
255     /* Use the command name as first argument */
256     CmdAddArg (Cmd, Path);
257 }
258
259
260
261 static void CmdSetOutput (CmdDesc* Cmd, const char* File)
262 /* Set the output file in a command desc */
263 {
264     CmdAddArg (Cmd, "-o");
265     CmdAddArg (Cmd, File);
266 }
267
268
269
270 static void CmdSetTarget (CmdDesc* Cmd, target_t Target)
271 /* Set the output file in a command desc */
272 {
273     CmdAddArg (Cmd, "-t");
274     CmdAddArg (Cmd, TargetNames[Target]);
275 }
276
277
278
279 /*****************************************************************************/
280 /*                              Target handling                              */
281 /*****************************************************************************/
282
283
284
285 static void SetTargetFiles (void)
286 /* Set the target system files */
287 {
288     /* Determine the names of the default startup and library file */
289     if (Target != TGT_NONE) {
290
291         /* Get a pointer to the system name and its length */
292         const char* TargetName = TargetNames [Target];
293         unsigned    TargetNameLen = strlen (TargetName);
294
295         /* Set the startup file */
296         TargetCRT0 = xmalloc (TargetNameLen + 2 + 1);
297         strcpy (TargetCRT0, TargetName);
298         strcat (TargetCRT0, ".o");
299
300         /* Set the library file */
301         TargetLib = xmalloc (TargetNameLen + 4 + 1);
302         strcpy (TargetLib, TargetName);
303         strcat (TargetLib, ".lib");
304
305     }
306 }
307
308
309
310 /*****************************************************************************/
311 /*                               Subprocesses                                */
312 /*****************************************************************************/
313
314
315
316 static void ExecProgram (CmdDesc* Cmd)
317 /* Execute a subprocess with the given name/parameters. Exit on errors. */
318 {
319     /* Call the program */
320     int Status = spawnvp (P_WAIT, Cmd->Name, Cmd->Args);
321
322     /* Check the result code */
323     if (Status < 0) {
324         /* Error executing the program */
325         Error ("Cannot execute `%s': %s", Cmd->Name, strerror (errno));
326     } else if (Status != 0) {
327         /* Called program had an error */
328         exit (Status);
329     }
330 }
331
332
333
334 static void Link (void)
335 /* Link the resulting executable */
336 {
337     unsigned I;
338
339     /* If we have a linker config file given, set the linker config file.
340      * Otherwise set the target system.
341      */
342     if (LinkerConfig) {
343         CmdAddArg (&LD65, "-C");
344         CmdAddArg (&LD65, LinkerConfig);
345     } else {
346         CmdSetTarget (&LD65, Target);
347         SetTargetFiles ();
348     }
349
350     /* Since linking is always the final step, if we have an output file name
351      * given, set it here. If we don't have an explicit output name given,
352      * try to build one from the name of the first input file.
353      */
354     if (OutputName) {
355
356         CmdAddArg (&LD65, "-o");
357         CmdAddArg (&LD65, OutputName);
358
359     } else if (FirstInput && FindExt (FirstInput)) {  /* Only if ext present! */
360
361         char* Output = MakeFilename (FirstInput, "");
362         CmdAddArg (&LD65, "-o");
363         CmdAddArg (&LD65, Output);
364         xfree (Output);
365
366     }
367
368     /* If we have a startup file, add its name as a parameter */
369     if (TargetCRT0) {
370         CmdAddArg (&LD65, TargetCRT0);
371     }
372
373     /* Add all object files as parameters */
374     for (I = 0; I < LD65.FileCount; ++I) {
375         CmdAddArg (&LD65, LD65.Files [I]);
376     }
377
378     /* Add the system runtime library */
379     if (TargetLib) {
380         CmdAddArg (&LD65, TargetLib);
381     }
382
383     /* Terminate the argument list with a NULL pointer */
384     CmdAddArg (&LD65, 0);
385
386     /* Call the linker */
387     ExecProgram (&LD65);
388 }
389
390
391
392 static void Assemble (const char* File)
393 /* Assemble the given file */
394 {
395     /* Remember the current assembler argument count */
396     unsigned ArgCount = CA65.ArgCount;
397
398     /* Set the target system */
399     CmdSetTarget (&CA65, Target);
400
401     /* If we won't link, this is the final step. In this case, set the
402      * output name.
403      */
404     if (DontLink && OutputName) {
405         CmdSetOutput (&CA65, OutputName);
406     } else {
407         /* The object file name will be the name of the source file
408          * with .s replaced by ".o". Add this file to the list of
409          * linker files.
410          */
411         char* ObjName = MakeFilename (File, ".o");
412         CmdAddFile (&LD65, ObjName);
413         xfree (ObjName);
414     }
415
416     /* Add the file as argument for the assembler */
417     CmdAddArg (&CA65, File);
418
419     /* Add a NULL pointer to terminate the argument list */
420     CmdAddArg (&CA65, 0);
421
422     /* Run the assembler */
423     ExecProgram (&CA65);
424
425     /* Remove the excess arguments */
426     CmdDelArgs (&CA65, ArgCount);
427 }
428
429
430
431 static void Compile (const char* File)
432 /* Compile the given file */
433 {
434     char* AsmName = 0;
435
436     /* Remember the current assembler argument count */
437     unsigned ArgCount = CC65.ArgCount;
438
439     /* Set the target system */
440     CmdSetTarget (&CC65, Target);
441
442     /* If we won't link, this is the final step. In this case, set the
443      * output name.
444      */
445     if (DontAssemble && OutputName) {
446         CmdSetOutput (&CC65, OutputName);
447     } else {
448         /* The assembler file name will be the name of the source file
449          * with .c replaced by ".s".
450          */
451         AsmName = MakeFilename (File, ".s");
452     }
453
454     /* Add the file as argument for the compiler */
455     CmdAddArg (&CC65, File);
456
457     /* Add a NULL pointer to terminate the argument list */
458     CmdAddArg (&CC65, 0);
459
460     /* Run the compiler */
461     ExecProgram (&CC65);
462
463     /* Remove the excess arguments */
464     CmdDelArgs (&CC65, ArgCount);
465
466     /* If this is not the final step, assemble the generated file, then
467      * remove it
468      */
469     if (!DontAssemble) {
470         Assemble (AsmName);
471         if (remove (AsmName) < 0) {
472             Warning ("Cannot remove temporary file `%s': %s",
473                      AsmName, strerror (errno));
474         }
475         xfree (AsmName);
476     }
477 }
478
479
480
481 static void CompileRes (const char* File)
482 /* Compile the given geos resource file */
483 {
484     char* AsmName = 0;
485
486     /* Remember the current assembler argument count */
487     unsigned ArgCount = GRC.ArgCount;
488
489     /* The assembler file name will be the name of the source file
490      * with .grc replaced by ".s".
491      */
492     AsmName = MakeFilename (File, ".s");
493
494     /* Add the file as argument for the resource compiler */
495     CmdAddArg (&GRC, File);
496
497     /* Add a NULL pointer to terminate the argument list */
498     CmdAddArg (&GRC, 0);
499
500     /* Run the compiler */
501     ExecProgram (&GRC);
502
503     /* Remove the excess arguments */
504     CmdDelArgs (&GRC, ArgCount);
505
506     /* If this is not the final step, assemble the generated file, then
507      * remove it
508      */
509     if (!DontAssemble) {
510         Assemble (AsmName);
511         if (remove (AsmName) < 0) {
512             Warning ("Cannot remove temporary file `%s': %s",
513                      AsmName, strerror (errno));
514         }
515     }
516
517     /* Free the assembler file name which was allocated from the heap */
518     xfree (AsmName);
519 }
520
521
522
523 /*****************************************************************************/
524 /*                                   Code                                    */
525 /*****************************************************************************/
526
527
528
529 static void Usage (void)
530 /* Print usage information and exit */
531 {
532     fprintf (stderr,
533              "Usage: %s [options] file\n"
534              "Short options:\n"
535              "  -A\t\t\tStrict ANSI mode\n"
536              "  -C name\t\tUse linker config file\n"
537              "  -Cl\t\t\tMake local variables static\n"
538              "  -D sym[=defn]\t\tDefine a preprocessor symbol\n"
539              "  -I dir\t\tSet a compiler include directory path\n"
540              "  -Ln name\t\tCreate a VICE label file\n"
541              "  -O\t\t\tOptimize code\n"
542              "  -Oi\t\t\tOptimize code, inline functions\n"
543              "  -Or\t\t\tOptimize code, honour the register keyword\n"
544              "  -Os\t\t\tOptimize code, inline known C funtions\n"
545              "  -S\t\t\tCompile but don't assemble and link\n"
546              "  -V\t\t\tPrint the version number\n"
547              "  -W\t\t\tSuppress warnings\n"
548              "  -c\t\t\tCompiler and assemble but don't link\n"
549              "  -d\t\t\tDebug mode\n"
550              "  -g\t\t\tAdd debug info\n"
551              "  -h\t\t\tHelp (this text)\n"
552              "  -m name\t\tCreate a map file\n"
553              "  -o name\t\tName the output file\n"
554              "  -t sys\t\tSet the target system\n"
555              "  -v\t\t\tVerbose mode\n"
556              "  -vm\t\t\tVerbose map file\n"
557              "\n"
558              "Long options:\n"
559              "  --ansi\t\tStrict ANSI mode\n"
560              "  --asm-include-dir dir\tSet an assembler include directory\n"
561              "  --debug\t\tDebug mode\n"
562              "  --debug-info\t\tAdd debug info\n"
563              "  --feature name\tSet an emulation feature\n"
564              "  --help\t\tHelp (this text)\n"
565              "  --include-dir dir\tSet a compiler include directory path\n"
566              "  --mapfile name\tCreate a map file\n"
567              "  --start-addr addr\tSet the default start address\n"
568              "  --target sys\t\tSet the target system\n"
569              "  --version\t\tPrint the version number\n"
570              "  --verbose\t\tVerbose mode\n",
571              ProgName);
572 }
573
574
575
576 static void OptAnsi (const char* Opt, const char* Arg)
577 /* Strict ANSI mode (compiler) */
578 {
579     CmdAddArg (&CC65, "-A");
580 }
581
582
583
584 static void OptAsmIncludeDir (const char* Opt, const char* Arg)
585 /* Include directory (assembler) */
586 {
587     CmdAddArg (&CA65, "-I");
588     CmdAddArg (&CA65, Arg);
589 }
590
591
592
593 static void OptDebug (const char* Opt, const char* Arg)
594 /* Debug mode (compiler) */
595 {
596     CmdAddArg (&CC65, "-d");
597 }
598
599
600
601 static void OptDebugInfo (const char* Opt, const char* Arg)
602 /* Debug Info - add to compiler and assembler */
603 {
604     CmdAddArg (&CC65, "-g");
605     CmdAddArg (&CA65, "-g");
606 }
607
608
609
610 static void OptFeature (const char* Opt, const char* Arg)
611 /* Emulation features for the assembler */
612 {
613     CmdAddArg (&CA65, "--feature");
614     CmdAddArg (&CA65, Arg);
615 }
616
617
618
619 static void OptHelp (const char* Opt, const char* Arg)
620 /* Print help - cl65 */
621 {
622     Usage ();
623     exit (EXIT_SUCCESS);
624 }
625
626
627
628 static void OptIncludeDir (const char* Opt, const char* Arg)
629 /* Include directory (compiler) */
630 {
631     CmdAddArg (&CC65, "-I");
632     CmdAddArg (&CC65, Arg);
633 }
634
635
636
637 static void OptMapFile (const char* Opt, const char* Arg)
638 /* Create a map file */
639 {
640     /* Create a map file (linker) */
641     CmdAddArg (&LD65, "-m");
642     CmdAddArg (&LD65, Arg);
643 }
644
645
646
647 static void OptStartAddr (const char* Opt, const char* Arg)
648 /* Set the default start address */
649 {
650     CmdAddArg (&LD65, "-S");
651     CmdAddArg (&LD65, Arg);
652 }
653
654
655
656 static void OptTarget (const char* Opt, const char* Arg)
657 /* Set the target system */
658 {
659     Target = FindTarget (Arg);
660     if (Target == TGT_UNKNOWN) {
661         Error ("No such target system: `%s'", Arg);
662     }
663 }
664
665
666
667 static void OptVerbose (const char* Opt, const char* Arg)
668 /* Verbose mode (compiler, assembler, linker) */
669 {
670     CmdAddArg (&CC65, "-v");
671     CmdAddArg (&CA65, "-v");
672     CmdAddArg (&LD65, "-v");
673 }
674
675
676
677 static void OptVersion (const char* Opt, const char* Arg)
678 /* Print version number */
679 {
680     fprintf (stderr,
681              "cl65 V%u.%u.%u - (C) Copyright 1998-2000 Ullrich von Bassewitz\n",
682              VER_MAJOR, VER_MINOR, VER_PATCH);
683 }
684
685
686
687 int main (int argc, char* argv [])
688 /* Utility main program */
689 {
690     /* Program long options */
691     static const LongOpt OptTab[] = {
692         { "--ansi",             0,      OptAnsi                 },
693         { "--asm-include-dir",  1,      OptAsmIncludeDir        },
694         { "--debug",            0,      OptDebug                },
695         { "--debug-info",       0,      OptDebugInfo            },
696         { "--feature",          1,      OptFeature              },
697         { "--help",             0,      OptHelp                 },
698         { "--include-dir",      1,      OptIncludeDir           },
699         { "--mapfile",          1,      OptMapFile              },
700         { "--start-addr",       1,      OptStartAddr            },
701         { "--target",           1,      OptTarget               },
702         { "--verbose",          0,      OptVerbose              },
703         { "--version",          0,      OptVersion              },
704     };
705
706     int I;
707
708     /* Initialize the cmdline module */
709     InitCmdLine (argc, argv, "cl65");
710
711     /* Initialize the command descriptors */
712     CmdInit (&CC65, "cc65");
713     CmdInit (&CA65, "ca65");
714     CmdInit (&LD65, "ld65");
715     CmdInit (&GRC,  "grc");
716
717     /* Our default target is the C64 instead of "none" */
718     Target = TGT_C64;
719
720     /* Check the parameters */
721     I = 1;
722     while (I < argc) {
723
724         /* Get the argument */
725         const char* Arg = argv [I];
726
727         /* Check for an option */
728         if (Arg [0] == '-') {
729
730             switch (Arg [1]) {
731
732                 case '-':
733                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
734                     break;
735
736                 case 'A':
737                     /* Strict ANSI mode (compiler) */
738                     OptAnsi (Arg, 0);
739                     break;
740
741                 case 'C':
742                     if (Arg[2] == 'l' && Arg[3] == '\0') {
743                         /* Make local variables static */
744                         CmdAddArg (&CC65, "-Cl");
745                     } else {
746                         /* Specify linker config file */
747                         LinkerConfig = GetArg (&I, 2);
748                     }
749                     break;
750
751                 case 'D':
752                     /* Define a preprocessor symbol (compiler) */
753                     CmdAddArg (&CC65, "-D");
754                     CmdAddArg (&CC65, GetArg (&I, 2));
755                     break;
756
757                 case 'I':
758                     /* Include directory (compiler) */
759                     OptIncludeDir (Arg, GetArg (&I, 2));
760                     break;
761
762                 case 'L':
763                     if (Arg[2] == 'n') {
764                         /* VICE label file (linker) */
765                         CmdAddArg (&LD65, "-Ln");
766                         CmdAddArg (&LD65, GetArg (&I, 3));
767                     } else {
768                         UnknownOption (Arg);
769                     }
770                     break;
771
772                 case 'O':
773                     /* Optimize code (compiler, also covers -Oi and others) */
774                     CmdAddArg (&CC65, Arg);
775                     break;
776
777                 case 'S':
778                     /* Dont assemble and link the created files */
779                     DontLink = DontAssemble = 1;
780                     break;
781
782                 case 'T':
783                     /* Include source as comment (compiler) */
784                     CmdAddArg (&CC65, "-T");
785                     break;
786
787                 case 'V':
788                     /* Print version number */
789                     OptVersion (Arg, 0);
790                     break;
791
792                 case 'W':
793                     /* Suppress warnings - compiler and assembler */
794                     CmdAddArg (&CC65, "-W");
795                     CmdAddArg (&CA65, "-W");
796                     CmdAddArg (&CA65, "0");
797                     break;
798
799                 case 'c':
800                     /* Don't link the resulting files */
801                     DontLink = 1;
802                     break;
803
804                 case 'd':
805                     /* Debug mode (compiler) */
806                     OptDebug (Arg, 0);
807                     break;
808
809                 case 'g':
810                     /* Debugging - add to compiler and assembler */
811                     OptDebugInfo (Arg, 0);
812                     break;
813
814                 case 'h':
815                 case '?':
816                     /* Print help - cl65 */
817                     OptHelp (Arg, 0);
818                     break;
819
820                 case 'm':
821                     /* Create a map file (linker) */
822                     OptMapFile (Arg, GetArg (&I, 2));
823                     break;
824
825                 case 'o':
826                     /* Name the output file */
827                     OutputName = GetArg (&I, 2);
828                     break;
829
830                 case 't':
831                     /* Set target system - compiler, assembler and linker */
832                     OptTarget (Arg, GetArg (&I, 2));
833                     break;
834
835                 case 'v':
836                     if (Arg [2] == 'm') {
837                         /* Verbose map file (linker) */
838                         CmdAddArg (&LD65, "-vm");
839                     } else {
840                         /* Verbose mode (compiler, assembler, linker) */
841                         OptVerbose (Arg, 0);
842                     }
843                     break;
844
845                 default:
846                     UnknownOption (Arg);
847             }
848         } else {
849
850             /* Remember the first file name */
851             if (FirstInput == 0) {
852                 FirstInput = Arg;
853             }
854
855             /* Determine the file type by the extension */
856             switch (GetFileType (Arg)) {
857
858                 case FILETYPE_C:
859                     /* Compile the file */
860                     Compile (Arg);
861                     break;
862
863                 case FILETYPE_ASM:
864                     /* Assemble the file */
865                     if (!DontAssemble) {
866                         Assemble (Arg);
867                     }
868                     break;
869
870                 case FILETYPE_OBJ:
871                 case FILETYPE_LIB:
872                     /* Add to the linker files */
873                     CmdAddFile (&LD65, Arg);
874                     break;
875
876                 case FILETYPE_GR:
877                     /* Add to the resource compiler files */
878                     CompileRes (Arg);
879                     break;
880
881                 default:
882                     Error ("Don't know what to do with `%s'", Arg);
883
884             }
885
886         }
887
888         /* Next argument */
889         ++I;
890     }
891
892     /* Check if we had any input files */
893     if (FirstInput == 0) {
894         Warning ("No input files");
895     }
896
897     /* Link the given files if requested and if we have any */
898     if (DontLink == 0 && LD65.FileCount > 0) {
899         Link ();
900     }
901
902     /* Return an apropriate exit code */
903     return EXIT_SUCCESS;
904 }
905
906
907
908