]> git.sur5r.net Git - cc65/blob - src/cl65/main.c
MingW fixes
[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) || defined(__MINGW32__)
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, add it to the command line.
340      * Otherwise pass the target to the linker if we have one.
341      */
342     if (LinkerConfig) {
343         CmdAddArg (&LD65, "-C");
344         CmdAddArg (&LD65, LinkerConfig);
345     } else if (Target != TGT_NONE) {
346         CmdSetTarget (&LD65, Target);
347     }
348
349     /* Determine which target libraries are needed */
350     SetTargetFiles ();
351
352     /* Since linking is always the final step, if we have an output file name
353      * given, set it here. If we don't have an explicit output name given,
354      * try to build one from the name of the first input file.
355      */
356     if (OutputName) {
357
358         CmdAddArg (&LD65, "-o");
359         CmdAddArg (&LD65, OutputName);
360
361     } else if (FirstInput && FindExt (FirstInput)) {  /* Only if ext present! */
362
363         char* Output = MakeFilename (FirstInput, "");
364         CmdAddArg (&LD65, "-o");
365         CmdAddArg (&LD65, Output);
366         xfree (Output);
367
368     }
369
370     /* If we have a startup file, add its name as a parameter */
371     if (TargetCRT0) {
372         CmdAddArg (&LD65, TargetCRT0);
373     }
374
375     /* Add all object files as parameters */
376     for (I = 0; I < LD65.FileCount; ++I) {
377         CmdAddArg (&LD65, LD65.Files [I]);
378     }
379
380     /* Add the system runtime library */
381     if (TargetLib) {
382         CmdAddArg (&LD65, TargetLib);
383     }
384
385     /* Terminate the argument list with a NULL pointer */
386     CmdAddArg (&LD65, 0);
387
388     /* Call the linker */
389     ExecProgram (&LD65);
390 }
391
392
393
394 static void Assemble (const char* File)
395 /* Assemble the given file */
396 {
397     /* Remember the current assembler argument count */
398     unsigned ArgCount = CA65.ArgCount;
399
400     /* Set the target system */
401     CmdSetTarget (&CA65, Target);
402
403     /* If we won't link, this is the final step. In this case, set the
404      * output name.
405      */
406     if (DontLink && OutputName) {
407         CmdSetOutput (&CA65, OutputName);
408     } else {
409         /* The object file name will be the name of the source file
410          * with .s replaced by ".o". Add this file to the list of
411          * linker files.
412          */
413         char* ObjName = MakeFilename (File, ".o");
414         CmdAddFile (&LD65, ObjName);
415         xfree (ObjName);
416     }
417
418     /* Add the file as argument for the assembler */
419     CmdAddArg (&CA65, File);
420
421     /* Add a NULL pointer to terminate the argument list */
422     CmdAddArg (&CA65, 0);
423
424     /* Run the assembler */
425     ExecProgram (&CA65);
426
427     /* Remove the excess arguments */
428     CmdDelArgs (&CA65, ArgCount);
429 }
430
431
432
433 static void Compile (const char* File)
434 /* Compile the given file */
435 {
436     char* AsmName = 0;
437
438     /* Remember the current assembler argument count */
439     unsigned ArgCount = CC65.ArgCount;
440
441     /* Set the target system */
442     CmdSetTarget (&CC65, Target);
443
444     /* If we won't link, this is the final step. In this case, set the
445      * output name.
446      */
447     if (DontAssemble && OutputName) {
448         CmdSetOutput (&CC65, OutputName);
449     } else {
450         /* The assembler file name will be the name of the source file
451          * with .c replaced by ".s".
452          */
453         AsmName = MakeFilename (File, ".s");
454     }
455
456     /* Add the file as argument for the compiler */
457     CmdAddArg (&CC65, File);
458
459     /* Add a NULL pointer to terminate the argument list */
460     CmdAddArg (&CC65, 0);
461
462     /* Run the compiler */
463     ExecProgram (&CC65);
464
465     /* Remove the excess arguments */
466     CmdDelArgs (&CC65, ArgCount);
467
468     /* If this is not the final step, assemble the generated file, then
469      * remove it
470      */
471     if (!DontAssemble) {
472         Assemble (AsmName);
473         if (remove (AsmName) < 0) {
474             Warning ("Cannot remove temporary file `%s': %s",
475                      AsmName, strerror (errno));
476         }
477         xfree (AsmName);
478     }
479 }
480
481
482
483 static void CompileRes (const char* File)
484 /* Compile the given geos resource file */
485 {
486     char* AsmName = 0;
487
488     /* Remember the current assembler argument count */
489     unsigned ArgCount = GRC.ArgCount;
490
491     /* The assembler file name will be the name of the source file
492      * with .grc replaced by ".s".
493      */
494     AsmName = MakeFilename (File, ".s");
495
496     /* Add the file as argument for the resource compiler */
497     CmdAddArg (&GRC, File);
498
499     /* Add a NULL pointer to terminate the argument list */
500     CmdAddArg (&GRC, 0);
501
502     /* Run the compiler */
503     ExecProgram (&GRC);
504
505     /* Remove the excess arguments */
506     CmdDelArgs (&GRC, ArgCount);
507
508     /* If this is not the final step, assemble the generated file, then
509      * remove it
510      */
511     if (!DontAssemble) {
512         Assemble (AsmName);
513         if (remove (AsmName) < 0) {
514             Warning ("Cannot remove temporary file `%s': %s",
515                      AsmName, strerror (errno));
516         }
517     }
518
519     /* Free the assembler file name which was allocated from the heap */
520     xfree (AsmName);
521 }
522
523
524
525 /*****************************************************************************/
526 /*                                   Code                                    */
527 /*****************************************************************************/
528
529
530
531 static void Usage (void)
532 /* Print usage information and exit */
533 {
534     fprintf (stderr,
535              "Usage: %s [options] file\n"
536              "Short options:\n"
537              "  -A\t\t\tStrict ANSI mode\n"
538              "  -C name\t\tUse linker config file\n"
539              "  -Cl\t\t\tMake local variables static\n"
540              "  -D sym[=defn]\t\tDefine a preprocessor symbol\n"
541              "  -I dir\t\tSet a compiler include directory path\n"
542              "  -Ln name\t\tCreate a VICE label file\n"
543              "  -O\t\t\tOptimize code\n"
544              "  -Oi\t\t\tOptimize code, inline functions\n"
545              "  -Or\t\t\tOptimize code, honour the register keyword\n"
546              "  -Os\t\t\tOptimize code, inline known C funtions\n"
547              "  -S\t\t\tCompile but don't assemble and link\n"
548              "  -V\t\t\tPrint the version number\n"
549              "  -W\t\t\tSuppress warnings\n"
550              "  -c\t\t\tCompiler and assemble but don't link\n"
551              "  -d\t\t\tDebug mode\n"
552              "  -g\t\t\tAdd debug info\n"
553              "  -h\t\t\tHelp (this text)\n"
554              "  -l\t\t\tCreate an assembler listing\n"
555              "  -m name\t\tCreate a map file\n"
556              "  -o name\t\tName the output file\n"
557              "  -t sys\t\tSet the target system\n"
558              "  -v\t\t\tVerbose mode\n"
559              "  -vm\t\t\tVerbose map file\n"
560              "\n"
561              "Long options:\n"
562              "  --ansi\t\tStrict ANSI mode\n"
563              "  --asm-include-dir dir\tSet an assembler include directory\n"
564              "  --debug\t\tDebug mode\n"
565              "  --debug-info\t\tAdd debug info\n"
566              "  --feature name\tSet an emulation feature\n"
567              "  --help\t\tHelp (this text)\n"
568              "  --include-dir dir\tSet a compiler include directory path\n"
569              "  --listing\t\tCreate an assembler listing\n"
570              "  --mapfile name\tCreate a map file\n"
571              "  --start-addr addr\tSet the default start address\n"
572              "  --target sys\t\tSet the target system\n"
573              "  --version\t\tPrint the version number\n"
574              "  --verbose\t\tVerbose mode\n",
575              ProgName);
576 }
577
578
579
580 static void OptAnsi (const char* Opt, const char* Arg)
581 /* Strict ANSI mode (compiler) */
582 {
583     CmdAddArg (&CC65, "-A");
584 }
585
586
587
588 static void OptAsmIncludeDir (const char* Opt, const char* Arg)
589 /* Include directory (assembler) */
590 {
591     CmdAddArg (&CA65, "-I");
592     CmdAddArg (&CA65, Arg);
593 }
594
595
596
597 static void OptDebug (const char* Opt, const char* Arg)
598 /* Debug mode (compiler) */
599 {
600     CmdAddArg (&CC65, "-d");
601 }
602
603
604
605 static void OptDebugInfo (const char* Opt, const char* Arg)
606 /* Debug Info - add to compiler and assembler */
607 {
608     CmdAddArg (&CC65, "-g");
609     CmdAddArg (&CA65, "-g");
610 }
611
612
613
614 static void OptFeature (const char* Opt, const char* Arg)
615 /* Emulation features for the assembler */
616 {
617     CmdAddArg (&CA65, "--feature");
618     CmdAddArg (&CA65, Arg);
619 }
620
621
622
623 static void OptHelp (const char* Opt, const char* Arg)
624 /* Print help - cl65 */
625 {
626     Usage ();
627     exit (EXIT_SUCCESS);
628 }
629
630
631
632 static void OptIncludeDir (const char* Opt, const char* Arg)
633 /* Include directory (compiler) */
634 {
635     CmdAddArg (&CC65, "-I");
636     CmdAddArg (&CC65, Arg);
637 }
638
639
640
641 static void OptListing (const char* Opt, const char* Arg)
642 /* Create an assembler listing */
643 {
644     CmdAddArg (&CA65, "-l");
645 }
646
647
648
649 static void OptMapFile (const char* Opt, const char* Arg)
650 /* Create a map file */
651 {
652     /* Create a map file (linker) */
653     CmdAddArg (&LD65, "-m");
654     CmdAddArg (&LD65, Arg);
655 }
656
657
658
659 static void OptStartAddr (const char* Opt, const char* Arg)
660 /* Set the default start address */
661 {
662     CmdAddArg (&LD65, "-S");
663     CmdAddArg (&LD65, Arg);
664 }
665
666
667
668 static void OptTarget (const char* Opt, const char* Arg)
669 /* Set the target system */
670 {
671     Target = FindTarget (Arg);
672     if (Target == TGT_UNKNOWN) {
673         Error ("No such target system: `%s'", Arg);
674     }
675 }
676
677
678
679 static void OptVerbose (const char* Opt, const char* Arg)
680 /* Verbose mode (compiler, assembler, linker) */
681 {
682     CmdAddArg (&CC65, "-v");
683     CmdAddArg (&CA65, "-v");
684     CmdAddArg (&LD65, "-v");
685 }
686
687
688
689 static void OptVersion (const char* Opt, const char* Arg)
690 /* Print version number */
691 {
692     fprintf (stderr,
693              "cl65 V%u.%u.%u - (C) Copyright 1998-2000 Ullrich von Bassewitz\n",
694              VER_MAJOR, VER_MINOR, VER_PATCH);
695 }
696
697
698
699 int main (int argc, char* argv [])
700 /* Utility main program */
701 {
702     /* Program long options */
703     static const LongOpt OptTab[] = {
704         { "--ansi",             0,      OptAnsi                 },
705         { "--asm-include-dir",  1,      OptAsmIncludeDir        },
706         { "--debug",            0,      OptDebug                },
707         { "--debug-info",       0,      OptDebugInfo            },
708         { "--feature",          1,      OptFeature              },
709         { "--help",             0,      OptHelp                 },
710         { "--include-dir",      1,      OptIncludeDir           },
711         { "--listing",          0,      OptListing              },
712         { "--mapfile",          1,      OptMapFile              },
713         { "--start-addr",       1,      OptStartAddr            },
714         { "--target",           1,      OptTarget               },
715         { "--verbose",          0,      OptVerbose              },
716         { "--version",          0,      OptVersion              },
717     };
718
719     int I;
720
721     /* Initialize the cmdline module */
722     InitCmdLine (argc, argv, "cl65");
723
724     /* Initialize the command descriptors */
725     CmdInit (&CC65, "cc65");
726     CmdInit (&CA65, "ca65");
727     CmdInit (&LD65, "ld65");
728     CmdInit (&GRC,  "grc");
729
730     /* Our default target is the C64 instead of "none" */
731     Target = TGT_C64;
732
733     /* Check the parameters */
734     I = 1;
735     while (I < argc) {
736
737         /* Get the argument */
738         const char* Arg = argv [I];
739
740         /* Check for an option */
741         if (Arg [0] == '-') {
742
743             switch (Arg [1]) {
744
745                 case '-':
746                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
747                     break;
748
749                 case 'A':
750                     /* Strict ANSI mode (compiler) */
751                     OptAnsi (Arg, 0);
752                     break;
753
754                 case 'C':
755                     if (Arg[2] == 'l' && Arg[3] == '\0') {
756                         /* Make local variables static */
757                         CmdAddArg (&CC65, "-Cl");
758                     } else {
759                         /* Specify linker config file */
760                         LinkerConfig = GetArg (&I, 2);
761                     }
762                     break;
763
764                 case 'D':
765                     /* Define a preprocessor symbol (compiler) */
766                     CmdAddArg (&CC65, "-D");
767                     CmdAddArg (&CC65, GetArg (&I, 2));
768                     break;
769
770                 case 'I':
771                     /* Include directory (compiler) */
772                     OptIncludeDir (Arg, GetArg (&I, 2));
773                     break;
774
775                 case 'L':
776                     if (Arg[2] == 'n') {
777                         /* VICE label file (linker) */
778                         CmdAddArg (&LD65, "-Ln");
779                         CmdAddArg (&LD65, GetArg (&I, 3));
780                     } else {
781                         UnknownOption (Arg);
782                     }
783                     break;
784
785                 case 'O':
786                     /* Optimize code (compiler, also covers -Oi and others) */
787                     CmdAddArg (&CC65, Arg);
788                     break;
789
790                 case 'S':
791                     /* Dont assemble and link the created files */
792                     DontLink = DontAssemble = 1;
793                     break;
794
795                 case 'T':
796                     /* Include source as comment (compiler) */
797                     CmdAddArg (&CC65, "-T");
798                     break;
799
800                 case 'V':
801                     /* Print version number */
802                     OptVersion (Arg, 0);
803                     break;
804
805                 case 'W':
806                     /* Suppress warnings - compiler and assembler */
807                     CmdAddArg (&CC65, "-W");
808                     CmdAddArg (&CA65, "-W");
809                     CmdAddArg (&CA65, "0");
810                     break;
811
812                 case 'c':
813                     /* Don't link the resulting files */
814                     DontLink = 1;
815                     break;
816
817                 case 'd':
818                     /* Debug mode (compiler) */
819                     OptDebug (Arg, 0);
820                     break;
821
822                 case 'g':
823                     /* Debugging - add to compiler and assembler */
824                     OptDebugInfo (Arg, 0);
825                     break;
826
827                 case 'h':
828                 case '?':
829                     /* Print help - cl65 */
830                     OptHelp (Arg, 0);
831                     break;
832
833                 case 'l':
834                     /* Create an assembler listing */
835                     OptListing (Arg, 0);
836                     break;
837
838                 case 'm':
839                     /* Create a map file (linker) */
840                     OptMapFile (Arg, GetArg (&I, 2));
841                     break;
842
843                 case 'o':
844                     /* Name the output file */
845                     OutputName = GetArg (&I, 2);
846                     break;
847
848                 case 't':
849                     /* Set target system - compiler, assembler and linker */
850                     OptTarget (Arg, GetArg (&I, 2));
851                     break;
852
853                 case 'v':
854                     if (Arg [2] == 'm') {
855                         /* Verbose map file (linker) */
856                         CmdAddArg (&LD65, "-vm");
857                     } else {
858                         /* Verbose mode (compiler, assembler, linker) */
859                         OptVerbose (Arg, 0);
860                     }
861                     break;
862
863                 default:
864                     UnknownOption (Arg);
865             }
866         } else {
867
868             /* Remember the first file name */
869             if (FirstInput == 0) {
870                 FirstInput = Arg;
871             }
872
873             /* Determine the file type by the extension */
874             switch (GetFileType (Arg)) {
875
876                 case FILETYPE_C:
877                     /* Compile the file */
878                     Compile (Arg);
879                     break;
880
881                 case FILETYPE_ASM:
882                     /* Assemble the file */
883                     if (!DontAssemble) {
884                         Assemble (Arg);
885                     }
886                     break;
887
888                 case FILETYPE_OBJ:
889                 case FILETYPE_LIB:
890                     /* Add to the linker files */
891                     CmdAddFile (&LD65, Arg);
892                     break;
893
894                 case FILETYPE_GR:
895                     /* Add to the resource compiler files */
896                     CompileRes (Arg);
897                     break;
898
899                 default:
900                     Error ("Don't know what to do with `%s'", Arg);
901
902             }
903
904         }
905
906         /* Next argument */
907         ++I;
908     }
909
910     /* Check if we had any input files */
911     if (FirstInput == 0) {
912         Warning ("No input files");
913     }
914
915     /* Link the given files if requested and if we have any */
916     if (DontLink == 0 && LD65.FileCount > 0) {
917         Link ();
918     }
919
920     /* Return an apropriate exit code */
921     return EXIT_SUCCESS;
922 }
923
924
925
926