]> git.sur5r.net Git - cc65/blob - src/cl65/main.c
added four escaped tabs to -E Stop after .... description
[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-2013, Ullrich von Bassewitz                                      */
10 /*                Roemerstrasse 52                                           */
11 /*                D-70794 Filderstadt                                        */
12 /* EMail:         uz@cc65.org                                                */
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 /* Check out if we have a spawn() function on the system, or if we must use
37 ** our own.
38 */
39 #if defined(_WIN32)
40 #  define HAVE_SPAWN 1
41 #else
42 #  define NEED_SPAWN 1
43 #endif
44
45 /* GCC strictly follows http://c-faq.com/ansi/constmismatch.html and issues an
46 ** 'incompatible pointer type' warning - that can't be suppressed via #pragma.
47 ** The spawnvp() prototype of MinGW (http://www.mingw.org/) differs from the
48 ** one of MinGW-w64 (http://mingw-w64.sourceforge.net/) regarding constness.
49 ** So there's no alternative to actually distinguish these environments :-(
50 */
51 #define SPAWN_ARGV_CONST_CAST
52 #if defined(__MINGW32__)
53 #  include <_mingw.h>
54 #  if !defined(__MINGW64_VERSION_MAJOR)
55 #    undef  SPAWN_ARGV_CONST_CAST
56 #    define SPAWN_ARGV_CONST_CAST (const char* const *)
57 #  endif
58 #endif
59
60
61 #include <stdio.h>
62 #include <stdlib.h>
63 #include <string.h>
64 #include <ctype.h>
65 #include <errno.h>
66 #if defined(HAVE_SPAWN)
67 #  include <process.h>
68 #endif
69
70 /* common */
71 #include "attrib.h"
72 #include "cmdline.h"
73 #include "filetype.h"
74 #include "fname.h"
75 #include "mmodel.h"
76 #include "searchpath.h"
77 #include "strbuf.h"
78 #include "target.h"
79 #include "version.h"
80 #include "xmalloc.h"
81
82 /* cl65 */
83 #include "global.h"
84 #include "error.h"
85
86
87
88 /*****************************************************************************/
89 /*                                   Data                                    */
90 /*****************************************************************************/
91
92
93
94 /* Struct that describes a command */
95 typedef struct CmdDesc CmdDesc;
96 struct CmdDesc {
97     char*       Name;           /* The command name */
98
99     unsigned    ArgCount;       /* Count of arguments */
100     unsigned    ArgMax;         /* Maximum count of arguments */
101     char**      Args;           /* The arguments */
102
103     unsigned    FileCount;      /* Count of files to translate */
104     unsigned    FileMax;        /* Maximum count of files */
105     char**      Files;          /* The files */
106 };
107
108 /* Command descriptors for the different programs */
109 static CmdDesc CC65 = { 0, 0, 0, 0, 0, 0, 0 };
110 static CmdDesc CA65 = { 0, 0, 0, 0, 0, 0, 0 };
111 static CmdDesc CO65 = { 0, 0, 0, 0, 0, 0, 0 };
112 static CmdDesc LD65 = { 0, 0, 0, 0, 0, 0, 0 };
113 static CmdDesc GRC  = { 0, 0, 0, 0, 0, 0, 0 };
114
115 /* Variables controlling the steps we're doing */
116 static int DoLink       = 1;
117 static int DoAssemble   = 1;
118
119 /* The name of the output file, NULL if none given */
120 static const char* OutputName = 0;
121
122 /* The name of the linker configuration file if given */
123 static const char* LinkerConfig = 0;
124
125 /* The name of the first input file. This will be used to construct the
126 ** executable file name if no explicit name is given.
127 */
128 static const char* FirstInput = 0;
129
130 /* The names of the files for dependency generation */
131 static const char* DepName = 0;
132 static const char* FullDepName = 0;
133
134 /* Remember if we should link a module */
135 static int Module = 0;
136
137 /* Extension used for a module */
138 #define MODULE_EXT      ".o65"
139
140 /* Name of the target specific runtime library */
141 static char* TargetLib  = 0;
142
143
144
145 /*****************************************************************************/
146 /*                Include the system specific spawn function                 */
147 /*****************************************************************************/
148
149
150
151 #if defined(NEED_SPAWN)
152 #  if defined(_AMIGA)
153 #    include "spawn-amiga.inc"
154 #  else
155 #    include "spawn-unix.inc"
156 #  endif
157 #endif
158
159
160
161 /*****************************************************************************/
162 /*                        Credential functions                               */
163 /*****************************************************************************/
164
165
166
167 static void DisableAssembling (void)
168 {
169     DoAssemble = 0;
170 }
171
172
173
174 static void DisableLinking (void)
175 {
176     DoLink = 0;
177 }
178
179
180
181 static void DisableAssemblingAndLinking (void)
182 {
183     DisableAssembling();
184     DisableLinking();
185 }
186
187
188
189 /*****************************************************************************/
190 /*                        Command structure handling                         */
191 /*****************************************************************************/
192
193
194
195 static void CmdExpand (CmdDesc* Cmd)
196 /* Expand the argument vector */
197 {
198     unsigned NewMax  = Cmd->ArgMax + 10;
199     char**       NewArgs = xmalloc (NewMax * sizeof (char*));
200     memcpy (NewArgs, Cmd->Args, Cmd->ArgMax * sizeof (char*));
201     xfree (Cmd->Args);
202     Cmd->Args   = NewArgs;
203     Cmd->ArgMax = NewMax;
204 }
205
206
207
208 static void CmdAddArg (CmdDesc* Cmd, const char* Arg)
209 /* Add a new argument to the command */
210 {
211     /* Expand the argument vector if needed */
212     if (Cmd->ArgCount >= Cmd->ArgMax) {
213         CmdExpand (Cmd);
214     }
215
216     /* Add a copy of the new argument, allow a NULL pointer */
217     if (Arg) {
218         Cmd->Args[Cmd->ArgCount++] = xstrdup (Arg);
219     } else {
220         Cmd->Args[Cmd->ArgCount++] = 0;
221     }
222 }
223
224
225
226 static void CmdAddArg2 (CmdDesc* Cmd, const char* Arg1, const char* Arg2)
227 /* Add a new argument pair to the command */
228 {
229     CmdAddArg (Cmd, Arg1);
230     CmdAddArg (Cmd, Arg2);
231 }
232
233
234
235 static void CmdAddArgList (CmdDesc* Cmd, const char* ArgList)
236 /* Add a list of arguments separated by commas */
237 {
238     const char* Arg = ArgList;
239     const char* P   = Arg;
240
241     while (1) {
242         if (*P == '\0' || *P == ',') {
243
244             /* End of argument, add it */
245             unsigned Len = P - Arg;
246
247             /* Expand the argument vector if needed */
248             if (Cmd->ArgCount >= Cmd->ArgMax) {
249                 CmdExpand (Cmd);
250             }
251
252             /* Add the new argument */
253             Cmd->Args[Cmd->ArgCount] = memcpy (xmalloc (Len + 1), Arg, Len);
254             Cmd->Args[Cmd->ArgCount][Len] = '\0';
255             ++Cmd->ArgCount;
256
257             /* If the argument was terminated by a comma, skip it, otherwise
258             ** we're done.
259             */
260             if (*P == ',') {
261                 /* Start over at next char */
262                 Arg = ++P;
263             } else {
264                 break;
265             }
266         } else {
267             /* Skip other chars */
268             ++P;
269         }
270     }
271
272 }
273
274
275
276 static void CmdDelArgs (CmdDesc* Cmd, unsigned LastValid)
277 /* Remove all arguments with an index greater than LastValid */
278 {
279     while (Cmd->ArgCount > LastValid) {
280         Cmd->ArgCount--;
281         xfree (Cmd->Args [Cmd->ArgCount]);
282         Cmd->Args [Cmd->ArgCount] = 0;
283     }
284 }
285
286
287
288 static void CmdAddFile (CmdDesc* Cmd, const char* File)
289 /* Add a new file to the command */
290 {
291     /* Expand the file vector if needed */
292     if (Cmd->FileCount == Cmd->FileMax) {
293         unsigned NewMax   = Cmd->FileMax + 10;
294         char**   NewFiles = xmalloc (NewMax * sizeof (char*));
295         memcpy (NewFiles, Cmd->Files, Cmd->FileMax * sizeof (char*));
296         xfree (Cmd->Files);
297         Cmd->Files   = NewFiles;
298         Cmd->FileMax = NewMax;
299     }
300
301     /* If the file name is not NULL (which is legal and is used to terminate
302     ** the file list), check if the file name does already exist in the file
303     ** list and print a warning if so. Regardless of the search result, add
304     ** the file.
305     */
306     if (File) {
307         unsigned I;
308         for (I = 0; I < Cmd->FileCount; ++I) {
309             if (strcmp (Cmd->Files[I], File) == 0) {
310                 /* Duplicate file */
311                 Warning ("Duplicate file in argument list: `%s'", File);
312                 /* No need to search further */
313                 break;
314             }
315         }
316
317         /* Add the file */
318         Cmd->Files [Cmd->FileCount++] = xstrdup (File);
319     } else {
320         /* Add a NULL pointer */
321         Cmd->Files [Cmd->FileCount++] = 0;
322     }
323 }
324
325
326
327 static void CmdInit (CmdDesc* Cmd, const char* Path, const char* Name)
328 /* Initialize the command using the given path and name of the executable */
329 {
330     char* FullName;
331
332     FullName = (char*) xmalloc (strlen (Path) + strlen (Name) + 1);
333     strcpy (FullName, Path);
334     strcat (FullName, Name);
335
336     /* Remember the command */
337     Cmd->Name = xstrdup (FullName);
338
339     /* Use the command name as first argument */
340     CmdAddArg (Cmd, FullName);
341
342     xfree (FullName);
343 }
344
345
346
347 static void CmdSetOutput (CmdDesc* Cmd, const char* File)
348 /* Set the output file in a command desc */
349 {
350     CmdAddArg2 (Cmd, "-o", File);
351 }
352
353
354
355 static void CmdSetTarget (CmdDesc* Cmd, target_t Target)
356 /* Set the output file in a command desc */
357 {
358     CmdAddArg2 (Cmd, "-t", GetTargetName (Target));
359 }
360
361
362
363 static void CmdPrint (CmdDesc* Cmd, FILE* F)
364 /* Output the command line encoded in the command desc */
365 {
366     unsigned I;
367     for (I = 0; I < Cmd->ArgCount && Cmd->Args[I] != 0; ++I) {
368         fprintf (F, "%s ", Cmd->Args[I]);
369     }
370 }
371
372
373
374 /*****************************************************************************/
375 /*                              Target handling                              */
376 /*****************************************************************************/
377
378
379
380 static void SetTargetFiles (void)
381 /* Set the target system files */
382 {
383     /* Determine the names of the target specific library file */
384     if (Target != TGT_NONE) {
385
386         /* Get a pointer to the system name and its length */
387         const char* TargetName = GetTargetName (Target);
388         unsigned    TargetNameLen = strlen (TargetName);
389
390         /* Set the library file */
391         TargetLib = xmalloc (TargetNameLen + 4 + 1);
392         memcpy (TargetLib, TargetName, TargetNameLen);
393         strcpy (TargetLib + TargetNameLen, ".lib");
394
395     }
396 }
397
398
399
400 /*****************************************************************************/
401 /*                               Subprocesses                                */
402 /*****************************************************************************/
403
404
405
406 static void ExecProgram (CmdDesc* Cmd)
407 /* Execute a subprocess with the given name/parameters. Exit on errors. */
408 {
409     int Status;
410
411     /* If in debug mode, output the command line we will execute */
412     if (Debug) {
413         printf ("Executing: ");
414         CmdPrint (Cmd, stdout);
415         printf ("\n");
416     }
417
418     /* Call the program */
419     Status = spawnvp (P_WAIT, Cmd->Name, SPAWN_ARGV_CONST_CAST Cmd->Args);
420
421     /* Check the result code */
422     if (Status < 0) {
423         /* Error executing the program */
424         Error ("Cannot execute `%s': %s", Cmd->Name, strerror (errno));
425     } else if (Status != 0) {
426         /* Called program had an error */
427         exit (Status);
428     }
429 }
430
431
432
433 static void Link (void)
434 /* Link the resulting executable */
435 {
436     unsigned I;
437
438     /* Since linking is always the final step, if we have an output file name
439     ** given, set it here. If we don't have an explicit output name given,
440     ** try to build one from the name of the first input file.
441     */
442     if (OutputName) {
443
444         CmdSetOutput (&LD65, OutputName);
445
446     } else if (FirstInput && FindExt (FirstInput)) {  /* Only if ext present! */
447
448         const char* Extension = Module? MODULE_EXT : "";
449         char* Output = MakeFilename (FirstInput, Extension);
450         CmdSetOutput (&LD65, Output);
451         xfree (Output);
452
453     }
454
455     /* If we have a linker config file given, add it to the command line.
456     ** Otherwise pass the target to the linker if we have one.
457     */
458     if (LinkerConfig) {
459         if (Module) {
460             Error ("Cannot use -C and --module together");
461         }
462         CmdAddArg2 (&LD65, "-C", LinkerConfig);
463     } else if (Module) {
464         CmdSetTarget (&LD65, TGT_MODULE);
465     } else {
466         CmdSetTarget (&LD65, Target);
467     }
468
469     /* Determine which target libraries are needed */
470     SetTargetFiles ();
471
472     /* Add all object files as parameters */
473     for (I = 0; I < LD65.FileCount; ++I) {
474         CmdAddArg (&LD65, LD65.Files [I]);
475     }
476
477     /* Add the system runtime library */
478     if (TargetLib) {
479         CmdAddArg (&LD65, TargetLib);
480     }
481
482     /* Terminate the argument list with a NULL pointer */
483     CmdAddArg (&LD65, 0);
484
485     /* Call the linker */
486     ExecProgram (&LD65);
487 }
488
489
490
491 static void AssembleFile (const char* File, unsigned ArgCount)
492 /* Common routine to assemble a file. Will be called by Assemble() and
493 ** AssembleIntermediate(). Adds options common for both routines and
494 ** assembles the file. Will remove excess arguments after assembly.
495 */
496 {
497     /* Set the target system */
498     CmdSetTarget (&CA65, Target);
499
500     /* Check if this is the last processing step */
501     if (DoLink) {
502         /* We're linking later. Add the output file of the assembly
503         ** the the file list of the linker. The name of the output
504         ** file is that of the input file with ".s" replaced by ".o".
505         */
506         char* ObjName = MakeFilename (File, ".o");
507         CmdAddFile (&LD65, ObjName);
508         xfree (ObjName);
509     } else {
510         /* This is the final step. If an output name is given, set it */
511         if (OutputName) {
512             CmdSetOutput (&CA65, OutputName);
513         }
514     }
515
516     /* Add the file as argument for the assembler */
517     CmdAddArg (&CA65, File);
518
519     /* Add a NULL pointer to terminate the argument list */
520     CmdAddArg (&CA65, 0);
521
522     /* Run the assembler */
523     ExecProgram (&CA65);
524
525     /* Remove the excess arguments */
526     CmdDelArgs (&CA65, ArgCount);
527 }
528
529
530
531 static void AssembleIntermediate (const char* SourceFile)
532 /* Assemble an intermediate file which was generated by a previous processing
533 ** step with SourceFile as input. The -dep options won't be added and
534 ** the intermediate assembler file is removed after assembly.
535 */
536 {
537     /* Generate the name of the assembler output file from the source file
538     ** name. It's the same name with the extension replaced by ".s"
539     */
540     char* AsmName = MakeFilename (SourceFile, ".s");
541
542     /* Assemble the intermediate assembler file */
543     AssembleFile (AsmName, CA65.ArgCount);
544
545     /* Remove the input file */
546     if (remove (AsmName) < 0) {
547         Warning ("Cannot remove temporary file `%s': %s",
548                  AsmName, strerror (errno));
549     }
550
551     /* Free the assembler file name which was allocated from the heap */
552     xfree (AsmName);
553 }
554
555
556
557 static void Assemble (const char* File)
558 /* Assemble the given file */
559 {
560     /* Remember the current assembler argument count */
561     unsigned ArgCount = CA65.ArgCount;
562
563     /* We aren't assembling an intermediate file, but one requested by the
564     ** user. So add a few options here if they were given on the command
565     ** line.
566     */
567     if (DepName && *DepName) {
568         CmdAddArg2 (&CA65, "--create-dep", DepName);
569     }
570     if (FullDepName && *FullDepName) {
571         CmdAddArg2 (&CA65, "--create-full-dep", FullDepName);
572     }
573
574     /* Use the common routine */
575     AssembleFile (File, ArgCount);
576 }
577
578
579
580 static void Compile (const char* File)
581 /* Compile the given file */
582 {
583     /* Remember the current compiler argument count */
584     unsigned ArgCount = CC65.ArgCount;
585
586     /* Set the target system */
587     CmdSetTarget (&CC65, Target);
588
589     /* Check if this is the final step */
590     if (DoAssemble) {
591         /* We will assemble this file later. If a dependency file is to be
592         ** generated, set the dependency target to be the final object file,
593         ** not the intermediate assembler file. But beware: There may be an
594         ** output name specified for the assembler.
595         */
596         if (DepName || FullDepName) {
597             /* Was an output name for the assembler specified? */
598             if (!DoLink && OutputName) {
599                 /* Use this name as the dependency target */
600                 CmdAddArg2 (&CC65, "--dep-target", OutputName);
601             } else {
602                 /* Use the object file name as the dependency target */
603                 char* ObjName = MakeFilename (File, ".o");
604                 CmdAddArg2 (&CC65, "--dep-target", ObjName);
605                 xfree (ObjName);
606             }
607         }
608     } else {
609         /* If we won't assemble, this is the final step. In this case, set
610         ** the output name if it was given.
611         */
612         if (OutputName) {
613             CmdSetOutput (&CC65, OutputName);
614         }
615     }
616
617     /* Add the file as argument for the compiler */
618     CmdAddArg (&CC65, File);
619
620     /* Add a NULL pointer to terminate the argument list */
621     CmdAddArg (&CC65, 0);
622
623     /* Run the compiler */
624     ExecProgram (&CC65);
625
626     /* Remove the excess arguments */
627     CmdDelArgs (&CC65, ArgCount);
628
629     /* If this is not the final step, assemble the generated file, then
630     ** remove it
631     */
632     if (DoAssemble) {
633         /* Assemble the intermediate file and remove it */
634         AssembleIntermediate (File);
635     }
636 }
637
638
639
640 static void CompileRes (const char* File)
641 /* Compile the given geos resource file */
642 {
643     /* Remember the current assembler argument count */
644     unsigned ArgCount = GRC.ArgCount;
645
646     /* Resource files need an geos-apple or geos-cbm target but this
647     ** is checked within grc65.
648     */
649     CmdSetTarget (&GRC, Target);
650
651     /* Add the file as argument for the resource compiler */
652     CmdAddArg (&GRC, File);
653
654     /* Add a NULL pointer to terminate the argument list */
655     CmdAddArg (&GRC, 0);
656
657     /* Run the compiler */
658     ExecProgram (&GRC);
659
660     /* Remove the excess arguments */
661     CmdDelArgs (&GRC, ArgCount);
662
663     /* If this is not the final step, assemble the generated file, then
664     ** remove it
665     */
666     if (DoAssemble) {
667         /* Assemble the intermediate file and remove it */
668         AssembleIntermediate (File);
669     }
670 }
671
672
673
674 static void ConvertO65 (const char* File)
675 /* Convert an o65 object file into an assembler file */
676 {
677     /* Remember the current converter argument count */
678     unsigned ArgCount = CO65.ArgCount;
679
680     /* If we won't assemble, this is the final step. In this case, set the
681     ** output name.
682     */
683     if (!DoAssemble && OutputName) {
684         CmdSetOutput (&CO65, OutputName);
685     }
686
687     /* Add the file as argument for the object file converter */
688     CmdAddArg (&CO65, File);
689
690     /* Add a NULL pointer to terminate the argument list */
691     CmdAddArg (&CO65, 0);
692
693     /* Run the converter */
694     ExecProgram (&CO65);
695
696     /* Remove the excess arguments */
697     CmdDelArgs (&CO65, ArgCount);
698
699     /* If this is not the final step, assemble the generated file, then
700     ** remove it
701     */
702     if (DoAssemble) {
703         /* Assemble the intermediate file and remove it */
704         AssembleIntermediate (File);
705     }
706 }
707
708
709
710 /*****************************************************************************/
711 /*                                   Code                                    */
712 /*****************************************************************************/
713
714
715
716 static void Usage (void)
717 /* Print usage information and exit */
718 {
719     printf ("Usage: %s [options] file [...]\n"
720             "Short options:\n"
721             "  -c\t\t\t\tCompile and assemble, but don't link\n"
722             "  -d\t\t\t\tDebug mode\n"
723             "  -g\t\t\t\tAdd debug info\n"
724             "  -h\t\t\t\tHelp (this text)\n"
725             "  -l name\t\t\tCreate an assembler listing file\n"
726             "  -m name\t\t\tCreate a map file\n"
727             "  -mm model\t\t\tSet the memory model\n"
728             "  -o name\t\t\tName the output file\n"
729             "  -r\t\t\t\tEnable register variables\n"
730             "  -t sys\t\t\tSet the target system\n"
731             "  -u sym\t\t\tForce an import of symbol `sym'\n"
732             "  -v\t\t\t\tVerbose mode\n"
733             "  -vm\t\t\t\tVerbose map file\n"
734             "  -C name\t\t\tUse linker config file\n"
735             "  -Cl\t\t\t\tMake local variables static\n"
736             "  -D sym[=defn]\t\t\tDefine a preprocessor symbol\n"
737             "  -E\t\t\t\tStop after the preprocessing stage\n"
738             "  -I dir\t\t\tSet a compiler include directory path\n"
739             "  -L path\t\t\tSpecify a library search path\n"
740             "  -Ln name\t\t\tCreate a VICE label file\n"
741             "  -O\t\t\t\tOptimize code\n"
742             "  -Oi\t\t\t\tOptimize code, inline runtime functions\n"
743             "  -Or\t\t\t\tOptimize code, honour the register keyword\n"
744             "  -Os\t\t\t\tOptimize code, inline known C functions\n"
745             "  -S\t\t\t\tCompile, but don't assemble and link\n"
746             "  -T\t\t\t\tInclude source as comment\n"
747             "  -V\t\t\t\tPrint the version number\n"
748             "  -W name[,...]\t\t\tSuppress compiler warnings\n"
749             "  -Wa options\t\t\tPass options to the assembler\n"
750             "  -Wc options\t\t\tPass options to the compiler\n"
751             "  -Wl options\t\t\tPass options to the linker\n"
752             "\n"
753             "Long options:\n"
754             "  --add-source\t\t\tInclude source as comment\n"
755             "  --asm-args options\t\tPass options to the assembler\n"
756             "  --asm-define sym[=v]\t\tDefine an assembler symbol\n"
757             "  --asm-include-dir dir\t\tSet an assembler include directory\n"
758             "  --bin-include-dir dir\t\tSet an assembler binary include directory\n"
759             "  --bss-label name\t\tDefine and export a BSS segment label\n"
760             "  --bss-name seg\t\tSet the name of the BSS segment\n"
761             "  --cc-args options\t\tPass options to the compiler\n"
762             "  --cfg-path path\t\tSpecify a config file search path\n"
763             "  --check-stack\t\t\tGenerate stack overflow checks\n"
764             "  --code-label name\t\tDefine and export a CODE segment label\n"
765             "  --code-name seg\t\tSet the name of the CODE segment\n"
766             "  --codesize x\t\t\tAccept larger code by factor x\n"
767             "  --config name\t\t\tUse linker config file\n"
768             "  --cpu type\t\t\tSet CPU type\n"
769             "  --create-dep name\t\tCreate a make dependency file\n"
770             "  --create-full-dep name\tCreate a full make dependency file\n"
771             "  --data-label name\t\tDefine and export a DATA segment label\n"
772             "  --data-name seg\t\tSet the name of the DATA segment\n"
773             "  --debug\t\t\tDebug mode\n"
774             "  --debug-info\t\t\tAdd debug info\n"
775             "  --feature name\t\tSet an emulation feature\n"
776             "  --force-import sym\t\tForce an import of symbol `sym'\n"
777             "  --help\t\t\tHelp (this text)\n"
778             "  --include-dir dir\t\tSet a compiler include directory path\n"
779             "  --ld-args options\t\tPass options to the linker\n"
780             "  --lib file\t\t\tLink this library\n"
781             "  --lib-path path\t\tSpecify a library search path\n"
782             "  --list-targets\t\tList all available targets\n"
783             "  --listing name\t\tCreate an assembler listing file\n"
784             "  --list-bytes n\t\tNumber of bytes per assembler listing line\n"
785             "  --mapfile name\t\tCreate a map file\n"
786             "  --memory-model model\t\tSet the memory model\n"
787             "  --module\t\t\tLink as a module\n"
788             "  --module-id id\t\tSpecify a module ID for the linker\n"
789             "  --o65-model model\t\tOverride the o65 model\n"
790             "  --obj file\t\t\tLink this object file\n"
791             "  --obj-path path\t\tSpecify an object file search path\n"
792             "  --print-target-path\t\tPrint the target file path\n"
793             "  --register-space b\t\tSet space available for register variables\n"
794             "  --register-vars\t\tEnable register variables\n"
795             "  --rodata-name seg\t\tSet the name of the RODATA segment\n"
796             "  --signed-chars\t\tDefault characters are signed\n"
797             "  --standard std\t\tLanguage standard (c89, c99, cc65)\n"
798             "  --start-addr addr\t\tSet the default start address\n"
799             "  --static-locals\t\tMake local variables static\n"
800             "  --target sys\t\t\tSet the target system\n"
801             "  --version\t\t\tPrint the version number\n"
802             "  --verbose\t\t\tVerbose mode\n"
803             "  --zeropage-label name\t\tDefine and export a ZEROPAGE segment label\n"
804             "  --zeropage-name seg\t\tSet the name of the ZEROPAGE segment\n",
805             ProgName);
806 }
807
808
809
810 static void OptAddSource (const char* Opt attribute ((unused)),
811                           const char* Arg attribute ((unused)))
812 /* Strict source code as comments to the generated asm code */
813 {
814     CmdAddArg (&CC65, "-T");
815 }
816
817
818
819 static void OptAsmArgs (const char* Opt attribute ((unused)), const char* Arg)
820 /* Pass arguments to the assembler */
821 {
822     CmdAddArgList (&CA65, Arg);
823 }
824
825
826
827 static void OptAsmDefine (const char* Opt attribute ((unused)), const char* Arg)
828 /* Define an assembler symbol (assembler) */
829 {
830     CmdAddArg2 (&CA65, "-D", Arg);
831 }
832
833
834
835 static void OptAsmIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
836 /* Include directory (assembler) */
837 {
838     CmdAddArg2 (&CA65, "-I", Arg);
839 }
840
841
842
843 static void OptBinIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
844 /* Binary include directory (assembler) */
845 {
846     CmdAddArg2 (&CA65, "--bin-include-dir", Arg);
847 }
848
849
850
851 static void OptBssLabel (const char* Opt attribute ((unused)), const char* Arg)
852 /* Handle the --bss-label option */
853 {
854     CmdAddArg2 (&CO65, "--bss-label", Arg);
855 }
856
857
858
859 static void OptBssName (const char* Opt attribute ((unused)), const char* Arg)
860 /* Handle the --bss-name option */
861 {
862     CmdAddArg2 (&CC65, "--bss-name", Arg);
863     CmdAddArg2 (&CO65, "--bss-name", Arg);
864 }
865
866
867
868 static void OptCCArgs (const char* Opt attribute ((unused)), const char* Arg)
869 /* Pass arguments to the compiler */
870 {
871     CmdAddArgList (&CC65, Arg);
872 }
873
874
875
876 static void OptCfgPath (const char* Opt attribute ((unused)), const char* Arg)
877 /* Config file search path (linker) */
878 {
879     CmdAddArg2 (&LD65, "--cfg-path", Arg);
880 }
881
882
883
884 static void OptCheckStack (const char* Opt attribute ((unused)),
885                            const char* Arg attribute ((unused)))
886 /* Handle the --check-stack option */
887 {
888     CmdAddArg (&CC65, "--check-stack");
889 }
890
891
892
893 static void OptCodeLabel (const char* Opt attribute ((unused)), const char* Arg)
894 /* Handle the --code-label option */
895 {
896     CmdAddArg2 (&CO65, "--code-label", Arg);
897 }
898
899
900
901 static void OptCodeName (const char* Opt attribute ((unused)), const char* Arg)
902 /* Handle the --code-name option */
903 {
904     CmdAddArg2 (&CC65, "--code-name", Arg);
905     CmdAddArg2 (&CO65, "--code-name", Arg);
906 }
907
908
909
910 static void OptCodeSize (const char* Opt attribute ((unused)), const char* Arg)
911 /* Handle the --codesize option */
912 {
913     CmdAddArg2 (&CC65, "--codesize", Arg);
914 }
915
916
917
918 static void OptConfig (const char* Opt attribute ((unused)), const char* Arg)
919 /* Config file (linker) */
920 {
921     if (LinkerConfig) {
922         Error ("Cannot specify -C/--config twice");
923     }
924     LinkerConfig = Arg;
925 }
926
927
928
929 static void OptCPU (const char* Opt attribute ((unused)), const char* Arg)
930 /* Handle the --cpu option */
931 {
932     /* Add the cpu type to the assembler and compiler */
933     CmdAddArg2 (&CA65, "--cpu", Arg);
934     CmdAddArg2 (&CC65, "--cpu", Arg);
935 }
936
937
938
939 static void OptCreateDep (const char* Opt attribute ((unused)), const char* Arg)
940 /* Handle the --create-dep option */
941 {
942     /* Add the file name to the compiler */
943     CmdAddArg2 (&CC65, "--create-dep", Arg);
944
945     /* Remember the file name for the assembler */
946     DepName = Arg;
947 }
948
949
950
951 static void OptCreateFullDep (const char* Opt attribute ((unused)), const char* Arg)
952 /* Handle the --create-full-dep option */
953 {
954     /* Add the file name to the compiler */
955     CmdAddArg2 (&CC65, "--create-full-dep", Arg);
956
957     /* Remember the file name for the assembler */
958     FullDepName = Arg;
959 }
960
961
962
963 static void OptDataLabel (const char* Opt attribute ((unused)), const char* Arg)
964 /* Handle the --data-label option */
965 {
966     CmdAddArg2 (&CO65, "--data-label", Arg);
967 }
968
969
970
971 static void OptDataName (const char* Opt attribute ((unused)), const char* Arg)
972 /* Handle the --data-name option */
973 {
974     CmdAddArg2 (&CC65, "--data-name", Arg);
975     CmdAddArg2 (&CO65, "--data-name", Arg);
976 }
977
978
979
980 static void OptDebug (const char* Opt attribute ((unused)),
981                       const char* Arg attribute ((unused)))
982 /* Debug mode (compiler and cl65 utility) */
983 {
984     CmdAddArg (&CC65, "-d");
985     CmdAddArg (&CO65, "-d");
986     Debug = 1;
987 }
988
989
990
991 static void OptDebugInfo (const char* Opt attribute ((unused)),
992                           const char* Arg attribute ((unused)))
993 /* Debug Info - add to compiler and assembler */
994 {
995     CmdAddArg (&CC65, "-g");
996     CmdAddArg (&CA65, "-g");
997     CmdAddArg (&CO65, "-g");
998 }
999
1000
1001
1002 static void OptFeature (const char* Opt attribute ((unused)), const char* Arg)
1003 /* Emulation features for the assembler */
1004 {
1005     CmdAddArg2 (&CA65, "--feature", Arg);
1006 }
1007
1008
1009
1010 static void OptForceImport (const char* Opt attribute ((unused)), const char* Arg)
1011 /* Emulation features for the assembler */
1012 {
1013     CmdAddArg2 (&LD65, "-u", Arg);
1014 }
1015
1016
1017
1018 static void OptHelp (const char* Opt attribute ((unused)),
1019                      const char* Arg attribute ((unused)))
1020 /* Print help - cl65 */
1021 {
1022     Usage ();
1023     exit (EXIT_SUCCESS);
1024 }
1025
1026
1027
1028 static void OptIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
1029 /* Include directory (compiler) */
1030 {
1031     CmdAddArg2 (&CC65, "-I", Arg);
1032 }
1033
1034
1035
1036 static void OptLdArgs (const char* Opt attribute ((unused)), const char* Arg)
1037 /* Pass arguments to the linker */
1038 {
1039     CmdAddArgList (&LD65, Arg);
1040 }
1041
1042
1043
1044 static void OptLib (const char* Opt attribute ((unused)), const char* Arg)
1045 /* Library file follows (linker) */
1046 {
1047     CmdAddArg2 (&LD65, "--lib", Arg);
1048 }
1049
1050
1051
1052 static void OptLibPath (const char* Opt attribute ((unused)), const char* Arg)
1053 /* Library search path (linker) */
1054 {
1055     CmdAddArg2 (&LD65, "--lib-path", Arg);
1056 }
1057
1058
1059
1060 static void OptListBytes (const char* Opt attribute ((unused)), const char* Arg)
1061 /* Set the maximum number of bytes per asm listing line */
1062 {
1063     CmdAddArg2 (&CA65, "--list-bytes", Arg);
1064 }
1065
1066
1067
1068 static void OptListing (const char* Opt attribute ((unused)), const char* Arg)
1069 /* Create an assembler listing */
1070 {
1071     CmdAddArg2 (&CA65, "-l", Arg);
1072 }
1073
1074
1075
1076 static void OptListTargets (const char* Opt attribute ((unused)),
1077                             const char* Arg attribute ((unused)))
1078 /* List all targets */
1079 {
1080     target_t T;
1081
1082     /* List the targets */
1083     for (T = TGT_NONE; T < TGT_COUNT; ++T) {
1084         printf ("%s\n", GetTargetName (T));
1085     }
1086
1087     /* Terminate */
1088     exit (EXIT_SUCCESS);
1089 }
1090
1091
1092
1093 static void OptMapFile (const char* Opt attribute ((unused)), const char* Arg)
1094 /* Create a map file */
1095 {
1096     /* Create a map file (linker) */
1097     CmdAddArg2 (&LD65, "-m", Arg);
1098 }
1099
1100
1101
1102 static void OptMemoryModel (const char* Opt attribute ((unused)), const char* Arg)
1103 /* Set the memory model */
1104 {
1105     mmodel_t MemoryModel = FindMemoryModel (Arg);
1106     if (MemoryModel == MMODEL_UNKNOWN) {
1107         Error ("Unknown memory model: %s", Arg);
1108     } else if (MemoryModel == MMODEL_HUGE) {
1109         Error ("Unsupported memory model: %s", Arg);
1110     } else {
1111         CmdAddArg2 (&CA65, "-mm", Arg);
1112         CmdAddArg2 (&CC65, "-mm", Arg);
1113     }
1114 }
1115
1116
1117
1118 static void OptModule (const char* Opt attribute ((unused)),
1119                        const char* Arg attribute ((unused)))
1120 /* Link as a module */
1121 {
1122     Module = 1;
1123 }
1124
1125
1126
1127 static void OptModuleId (const char* Opt attribute ((unused)), const char* Arg)
1128 /* Specify a module if for the linker */
1129 {
1130     /* Pass it straight to the linker */
1131     CmdAddArg2 (&LD65, "--module-id", Arg);
1132 }
1133
1134
1135
1136 static void OptO65Model (const char* Opt attribute ((unused)), const char* Arg)
1137 /* Handle the --o65-model option */
1138 {
1139     CmdAddArg2 (&CO65, "-m", Arg);
1140 }
1141
1142
1143
1144 static void OptObj (const char* Opt attribute ((unused)), const char* Arg)
1145 /* Object file follows (linker) */
1146 {
1147     CmdAddArg2 (&LD65, "--obj", Arg);
1148 }
1149
1150
1151
1152 static void OptObjPath (const char* Opt attribute ((unused)), const char* Arg)
1153 /* Object file search path (linker) */
1154 {
1155     CmdAddArg2 (&LD65, "--obj-path", Arg);
1156 }
1157
1158
1159
1160 static void OptPrintTargetPath (const char* Opt attribute ((unused)),
1161                                 const char* Arg attribute ((unused)))
1162 /* Print the target file path */
1163 {
1164     SearchPaths* TargetPath = NewSearchPath ();
1165     AddSubSearchPathFromEnv (TargetPath, "CC65_HOME", "target");
1166 #if defined(CL65_TGT) && !defined(_WIN32)
1167     AddSearchPath (TargetPath, STRINGIZE (CL65_TGT));
1168 #endif
1169     AddSubSearchPathFromWinBin (TargetPath, "target");
1170
1171     printf ("%s\n", GetSearchPath (TargetPath, 0));
1172     exit (EXIT_SUCCESS);
1173 }
1174
1175
1176
1177 static void OptRegisterSpace (const char* Opt attribute ((unused)), const char* Arg)
1178 /* Handle the --register-space option */
1179 {
1180     CmdAddArg2 (&CC65, "--register-space", Arg);
1181 }
1182
1183
1184
1185 static void OptRegisterVars (const char* Opt attribute ((unused)),
1186                              const char* Arg attribute ((unused)))
1187 /* Handle the --register-vars option */
1188 {
1189     CmdAddArg (&CC65, "-r");
1190 }
1191
1192
1193
1194 static void OptRodataName (const char* Opt attribute ((unused)), const char* Arg)
1195 /* Handle the --rodata-name option */
1196 {
1197     CmdAddArg2 (&CC65, "--rodata-name", Arg);
1198 }
1199
1200
1201
1202 static void OptSignedChars (const char* Opt attribute ((unused)),
1203                             const char* Arg attribute ((unused)))
1204 /* Make default characters signed */
1205 {
1206     CmdAddArg (&CC65, "-j");
1207 }
1208
1209
1210
1211 static void OptStandard (const char* Opt attribute ((unused)), const char* Arg)
1212 /* Set the language standard */
1213 {
1214     CmdAddArg2 (&CC65, "--standard", Arg);
1215 }
1216
1217
1218
1219 static void OptStartAddr (const char* Opt attribute ((unused)), const char* Arg)
1220 /* Set the default start address */
1221 {
1222     CmdAddArg2 (&LD65, "-S", Arg);
1223 }
1224
1225
1226
1227 static void OptStaticLocals (const char* Opt attribute ((unused)),
1228                              const char* Arg attribute ((unused)))
1229 /* Place local variables in static storage */
1230 {
1231     CmdAddArg (&CC65, "-Cl");
1232 }
1233
1234
1235
1236 static void OptTarget (const char* Opt attribute ((unused)), const char* Arg)
1237 /* Set the target system */
1238 {
1239     Target = FindTarget (Arg);
1240     if (Target == TGT_UNKNOWN) {
1241         Error ("No such target system: `%s'", Arg);
1242     } else if (Target == TGT_MODULE) {
1243         Error ("Cannot use `module' as target, use --module instead");
1244     }
1245 }
1246
1247
1248
1249 static void OptVerbose (const char* Opt attribute ((unused)),
1250                         const char* Arg attribute ((unused)))
1251 /* Verbose mode (compiler, assembler, linker) */
1252 {
1253     CmdAddArg (&CC65, "-v");
1254     CmdAddArg (&CA65, "-v");
1255     CmdAddArg (&CO65, "-v");
1256     CmdAddArg (&LD65, "-v");
1257 }
1258
1259
1260
1261 static void OptVersion (const char* Opt attribute ((unused)),
1262                         const char* Arg attribute ((unused)))
1263 /* Print version number */
1264 {
1265     fprintf (stderr, "%s V%s\n", ProgName, GetVersionAsString ());
1266     exit(EXIT_SUCCESS);
1267 }
1268
1269
1270
1271 static void OptZeropageLabel (const char* Opt attribute ((unused)), const char* Arg)
1272 /* Handle the --zeropage-label option */
1273 {
1274     CmdAddArg2 (&CO65, "--zeropage-label", Arg);
1275 }
1276
1277
1278
1279 static void OptZeropageName (const char* Opt attribute ((unused)), const char* Arg)
1280 /* Handle the --zeropage-name option */
1281 {
1282     CmdAddArg2 (&CO65, "--zeropage-name", Arg);
1283 }
1284
1285
1286
1287 int main (int argc, char* argv [])
1288 /* Utility main program */
1289 {
1290     /* Program long options */
1291     static const LongOpt OptTab[] = {
1292         { "--add-source",        0, OptAddSource      },
1293         { "--asm-args",          1, OptAsmArgs        },
1294         { "--asm-define",        1, OptAsmDefine      },
1295         { "--asm-include-dir",   1, OptAsmIncludeDir  },
1296         { "--bin-include-dir",   1, OptBinIncludeDir  },
1297         { "--bss-label",         1, OptBssLabel       },
1298         { "--bss-name",          1, OptBssName        },
1299         { "--cc-args",           1, OptCCArgs         },
1300         { "--cfg-path",          1, OptCfgPath        },
1301         { "--check-stack",       0, OptCheckStack     },
1302         { "--code-label",        1, OptCodeLabel      },
1303         { "--code-name",         1, OptCodeName       },
1304         { "--codesize",          1, OptCodeSize       },
1305         { "--config",            1, OptConfig         },
1306         { "--cpu",               1, OptCPU            },
1307         { "--create-dep",        1, OptCreateDep      },
1308         { "--create-full-dep",   1, OptCreateFullDep  },
1309         { "--data-label",        1, OptDataLabel      },
1310         { "--data-name",         1, OptDataName       },
1311         { "--debug",             0, OptDebug          },
1312         { "--debug-info",        0, OptDebugInfo      },
1313         { "--feature",           1, OptFeature        },
1314         { "--force-import",      1, OptForceImport    },
1315         { "--help",              0, OptHelp           },
1316         { "--include-dir",       1, OptIncludeDir     },
1317         { "--ld-args",           1, OptLdArgs         },
1318         { "--lib",               1, OptLib            },
1319         { "--lib-path",          1, OptLibPath        },
1320         { "--list-targets",      0, OptListTargets    },
1321         { "--listing",           1, OptListing        },
1322         { "--list-bytes",        1, OptListBytes      },
1323         { "--mapfile",           1, OptMapFile        },
1324         { "--memory-model",      1, OptMemoryModel    },
1325         { "--module",            0, OptModule         },
1326         { "--module-id",         1, OptModuleId       },
1327         { "--o65-model",         1, OptO65Model       },
1328         { "--obj",               1, OptObj            },
1329         { "--obj-path",          1, OptObjPath        },
1330         { "--print-target-path", 0, OptPrintTargetPath},
1331         { "--register-space",    1, OptRegisterSpace  },
1332         { "--register-vars",     0, OptRegisterVars   },
1333         { "--rodata-name",       1, OptRodataName     },
1334         { "--signed-chars",      0, OptSignedChars    },
1335         { "--standard",          1, OptStandard       },
1336         { "--start-addr",        1, OptStartAddr      },
1337         { "--static-locals",     0, OptStaticLocals   },
1338         { "--target",            1, OptTarget         },
1339         { "--verbose",           0, OptVerbose        },
1340         { "--version",           0, OptVersion        },
1341         { "--zeropage-label",    1, OptZeropageLabel  },
1342         { "--zeropage-name",     1, OptZeropageName   },
1343     };
1344
1345     char* CmdPath;
1346     unsigned I;
1347
1348     /* Initialize the cmdline module */
1349     InitCmdLine (&argc, &argv, "cl65");
1350
1351     /* Initialize the command descriptors */
1352     if (argc == 0) {
1353         CmdPath = xstrdup ("");
1354     } else {
1355         char* Ptr;
1356         CmdPath = xstrdup (argv[0]);
1357         Ptr = strrchr (CmdPath, '/');
1358         if (Ptr == 0) {
1359             Ptr = strrchr (CmdPath, '\\');
1360         }
1361         if (Ptr == 0) {
1362             *CmdPath = '\0';
1363         } else {
1364             *(Ptr + 1) = '\0';
1365         }
1366     }
1367     CmdInit (&CC65, CmdPath, "cc65");
1368     CmdInit (&CA65, CmdPath, "ca65");
1369     CmdInit (&CO65, CmdPath, "co65");
1370     CmdInit (&LD65, CmdPath, "ld65");
1371     CmdInit (&GRC,  CmdPath, "grc65");
1372     xfree (CmdPath);
1373
1374     /* Our default target is the C64 instead of "none" */
1375     Target = TGT_C64;
1376
1377     /* Check the parameters */
1378     I = 1;
1379     while (I < ArgCount) {
1380
1381         /* Get the argument */
1382         const char* Arg = ArgVec[I];
1383
1384         /* Check for an option */
1385         if (Arg [0] == '-') {
1386
1387             switch (Arg [1]) {
1388
1389                 case '-':
1390                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
1391                     break;
1392
1393                 case 'C':
1394                     if (Arg[2] == 'l' && Arg[3] == '\0') {
1395                         /* Make local variables static */
1396                         OptStaticLocals (Arg, 0);
1397                     } else {
1398                         /* Specify linker config file */
1399                         OptConfig (Arg, GetArg (&I, 2));
1400                     }
1401                     break;
1402
1403                 case 'D':
1404                     /* Define a preprocessor symbol (compiler) */
1405                     CmdAddArg2 (&CC65, "-D", GetArg (&I, 2));
1406                     break;
1407
1408                 case 'I':
1409                     /* Include directory (compiler) */
1410                     OptIncludeDir (Arg, GetArg (&I, 2));
1411                     break;
1412
1413                 case 'L':
1414                     if (Arg[2] == 'n' && Arg[3] == '\0') {
1415                         /* VICE label file (linker) */
1416                         CmdAddArg2 (&LD65, "-Ln", GetArg (&I, 3));
1417                     } else {
1418                         /* Library search path (linker) */
1419                         OptLibPath (Arg, GetArg (&I, 2));
1420                     }
1421                     break;
1422
1423                 case 'O':
1424                     /* Optimize code (compiler, also covers -Oi and others) */
1425                     CmdAddArg (&CC65, Arg);
1426                     break;
1427
1428                 case 'S':
1429                     /* Dont assemble and link the created files */
1430                     DisableAssemblingAndLinking();
1431                     break;
1432
1433                 case 'T':
1434                     /* Include source as comment (compiler) */
1435                     OptAddSource (Arg, 0);
1436                     break;
1437
1438                 case 'V':
1439                     /* Print version number */
1440                     OptVersion (Arg, 0);
1441                     break;
1442                 
1443                 case 'E':
1444                     /* Forward -E to compiler */
1445                     CmdAddArg (&CC65, Arg);  
1446                     DisableAssemblingAndLinking();
1447                     break;
1448                     
1449                 case 'W':
1450                     /* avoid && with'\0' in if clauses */
1451                     if (Arg[3] == '\0') {
1452                         switch (Arg[2]) {
1453                         case 'a':
1454                             /* -Wa: Pass options to assembler */
1455                             OptAsmArgs (Arg, GetArg (&I, 3));
1456                             break;
1457                         case 'c':
1458                             /* -Wc: Pass options to compiler 
1459                             ** Remember -Wc sub arguments in cc65 arg struct 
1460                             */
1461                             OptCCArgs (Arg, GetArg (&I, 3));
1462                             break;
1463                         case 'l':
1464                             /* -Wl: Pass options to linker */
1465                             OptLdArgs (Arg, GetArg (&I, 3));
1466                             break;
1467                         default:
1468                             break;
1469                        }
1470                     }else {
1471                         /* Anything else: Suppress warnings (compiler) */
1472                         CmdAddArg2 (&CC65, "-W", GetArg (&I, 2));
1473                     }
1474                     break;
1475
1476                 case 'c':
1477                     /* Don't link the resulting files */
1478                     DisableLinking();
1479                     break;
1480
1481                 case 'd':
1482                     /* Debug mode (compiler) */
1483                     OptDebug (Arg, 0);
1484                     break;
1485
1486                 case 'g':
1487                     /* Debugging - add to compiler and assembler */
1488                     OptDebugInfo (Arg, 0);
1489                     break;
1490
1491                 case 'h':
1492                 case '?':
1493                     /* Print help - cl65 */
1494                     OptHelp (Arg, 0);
1495                     break;
1496
1497                 case 'j':
1498                     /* Default characters are signed */
1499                     OptSignedChars (Arg, 0);
1500                     break;
1501
1502                 case 'l':
1503                     /* Create an assembler listing */
1504                     OptListing (Arg, GetArg (&I, 2));
1505                     break;
1506
1507                 case 'm':
1508                     /* Create a map file (linker) */
1509                     OptMapFile (Arg, GetArg (&I, 2));
1510                     break;
1511
1512                 case 'o':
1513                     /* Name the output file */
1514                     OutputName = GetArg (&I, 2);
1515                     break;
1516
1517                 case 'r':
1518                     /* Enable register variables */
1519                     OptRegisterVars (Arg, 0);
1520                     break;
1521
1522                 case 't':
1523                     /* Set target system - compiler, assembler and linker */
1524                     OptTarget (Arg, GetArg (&I, 2));
1525                     break;
1526
1527                 case 'u':
1528                     /* Force an import (linker) */
1529                     OptForceImport (Arg, GetArg (&I, 2));
1530                     break;
1531
1532                 case 'v':
1533                     if (Arg [2] == 'm') {
1534                         /* Verbose map file (linker) */
1535                         CmdAddArg (&LD65, "-vm");
1536                     } else {
1537                         /* Verbose mode (compiler, assembler, linker) */
1538                         OptVerbose (Arg, 0);
1539                     }
1540                     break;
1541
1542                 default:
1543                     UnknownOption (Arg);
1544             }
1545         } else {
1546
1547             /* Remember the first file name */
1548             if (FirstInput == 0) {
1549                 FirstInput = Arg;
1550             }
1551
1552             /* Determine the file type by the extension */
1553             switch (GetFileType (Arg)) {
1554
1555                 case FILETYPE_C:
1556                     /* Compile the file */
1557                     Compile (Arg);
1558                     break;
1559
1560                 case FILETYPE_ASM:
1561                     /* Assemble the file */
1562                     if (DoAssemble) {
1563                         Assemble (Arg);
1564                     }
1565                     break;
1566
1567                 case FILETYPE_OBJ:
1568                 case FILETYPE_LIB:
1569                     /* Add to the linker files */
1570                     CmdAddFile (&LD65, Arg);
1571                     break;
1572
1573                 case FILETYPE_GR:
1574                     /* Add to the resource compiler files */
1575                     CompileRes (Arg);
1576                     break;
1577
1578                 case FILETYPE_O65:
1579                     /* Add the the object file converter files */
1580                     ConvertO65 (Arg);
1581                     break;
1582
1583                 default:
1584                     Error ("Don't know what to do with `%s'", Arg);
1585
1586             }
1587
1588         }
1589
1590         /* Next argument */
1591         ++I;
1592     }
1593
1594     /* Check if we had any input files */
1595     if (FirstInput == 0) {
1596         Warning ("No input files");
1597     }
1598
1599     /* Link the given files if requested and if we have any */
1600     if (DoLink && LD65.FileCount > 0) {
1601         Link ();
1602     }
1603
1604     /* Return an apropriate exit code */
1605     return EXIT_SUCCESS;
1606 }