]> git.sur5r.net Git - cc65/blob - src/ar65/main.c
Bumped the version number
[cc65] / src / ar65 / main.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  main.c                                   */
4 /*                                                                           */
5 /*                    Main program for the ar65 archiver                     */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998     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 <time.h>
40
41 #include "../common/cmdline.h"
42 #include "../common/version.h"
43
44 #include "global.h"
45 #include "add.h"
46 #include "del.h"
47 #include "list.h"
48 #include "extract.h"
49
50
51
52 /*****************************************************************************/
53 /*                                   Code                                    */
54 /*****************************************************************************/
55
56
57
58 static void Usage (void)
59 /* Print usage information and exit */
60 {
61     fprintf (stderr,
62              "Usage: %s <operation> lib file|module ...\n"
63              "Operation is one of:\n"
64              "\ta\tAdd modules\n"
65              "\td\tDelete modules\n"
66              "\tl\tList library contents\n"
67              "\tx\tExtract modules\n"
68              "\tV\tPrint the archiver version\n",
69              ProgName);
70     exit (EXIT_FAILURE);
71 }
72
73
74
75 int main (int argc, char* argv [])
76 /* Assembler main program */
77 {
78     int I;
79
80     /* Initialize the cmdline module */
81     InitCmdLine (argc, argv, "ar65");
82
83     /* We must have a file name */
84     if (argc < 2) {
85         Usage ();
86     }
87
88     /* Check the parameters */
89     I = 1;
90     while (I < argc) {
91
92         /* Get the argument */
93         const char* Arg = argv [I];
94
95         /* Check for an option */
96         if (strlen (Arg) != 1) {
97             Usage ();
98         }
99         switch (Arg [0]) {
100
101             case 'a':
102                 AddObjFiles (argc - I - 1, &argv [I+1]);
103                 break;
104
105             case 'd':
106                 DelObjFiles (argc - I - 1, &argv [I+1]);
107                 break;
108
109             case 'l':
110                 ListObjFiles (argc - I - 1, &argv [I+1]);
111                 break;
112
113             case 'v':
114                 ++Verbose;
115                 break;
116
117             case 'x':
118                 ExtractObjFiles (argc - I - 1, &argv [I+1]);
119                 break;
120
121             case 'V':
122                 fprintf (stderr,
123                          "ar65 V%u.%u.%u - (C) Copyright 1998-1999 Ullrich von Bassewitz\n",
124                          VER_MAJOR, VER_MINOR, VER_PATCH);
125                 break;
126
127             default:
128                 fprintf (stderr, "Unknown option: %s\n", Arg);
129                 Usage ();
130
131         }
132
133         /* Next argument */
134         ++I;
135     }
136
137     /* Return an apropriate exit code */
138     return EXIT_SUCCESS;
139 }
140
141
142