mirror of
https://github.com/cc65/cc65.git
synced 2024-12-24 11:31:31 +00:00
Update main.c
This commit is contained in:
parent
49e22f566f
commit
80feb80168
@ -62,7 +62,7 @@ static void Usage (void)
|
||||
{
|
||||
fprintf (stderr, "Usage: %s <operation ...> lib file|module ...\n"
|
||||
"Operations are some of:\n"
|
||||
"\ta\tAdd modules\n"
|
||||
"\tr\tAdd modules\n"
|
||||
"\td\tDelete modules\n"
|
||||
"\tt\tList library table\n"
|
||||
"\tv\tIncrease verbosity (put before other operation)\n"
|
||||
@ -96,7 +96,8 @@ int main (int argc, char* argv [])
|
||||
|
||||
switch (Arg [0]) {
|
||||
|
||||
case 'a':
|
||||
case 'r': /* POSIX.2 */
|
||||
case 'a': /* staying compatible */
|
||||
AddObjFiles (ArgCount - I - 1, &ArgVec[I+1]);
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user