From 1b40f005731e63075d804e52defe98583070f867 Mon Sep 17 00:00:00 2001 From: uz Date: Thu, 27 Aug 2009 15:30:52 +0000 Subject: [PATCH] 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 --- src/cl65/main.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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 }, -- 2.39.5