From: uz Date: Thu, 27 Aug 2009 15:30:52 +0000 (+0000) Subject: Added the --force-import option also to the cl65 utility. X-Git-Tag: V2.13.0rc1~203 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1b40f005731e63075d804e52defe98583070f867;p=cc65 Added the --force-import option also to the cl65 utility. git-svn-id: svn://svn.cc65.org/cc65/trunk@4053 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cl65/main.c b/src/cl65/main.c index 0c2738901..a00cf745e 100644 --- a/src/cl65/main.c +++ b/src/cl65/main.c @@ -6,8 +6,8 @@ /* */ /* */ /* */ -/* (C) 1999-2005, Ullrich von Bassewitz */ -/* Römerstrasse 52 */ +/* (C) 1999-2009, Ullrich von Bassewitz */ +/* Roemerstrasse 52 */ /* D-70794 Filderstadt */ /* EMail: uz@cc65.org */ /* */ @@ -877,6 +877,14 @@ static void OptFeature (const char* Opt attribute ((unused)), const char* Arg) +static void OptForceImport (const char* Opt attribute ((unused)), const char* Arg) +/* Emulation features for the assembler */ +{ + CmdAddArg2 (&LD65, "--force-import", Arg); +} + + + static void OptForgetIncPaths (const char* Opt attribute ((unused)), const char* Arg attribute ((unused))) /* Forget all currently defined include paths */ @@ -1164,6 +1172,7 @@ int main (int argc, char* argv []) { "--debug", 0, OptDebug }, { "--debug-info", 0, OptDebugInfo }, { "--feature", 1, OptFeature }, + { "--force-import", 1, OptForceImport }, { "--forget-inc-paths", 0, OptForgetIncPaths }, { "--help", 0, OptHelp }, { "--include-dir", 1, OptIncludeDir },