From 4add4c3396bfa09f655af0e82a8dfd2705ef33ed Mon Sep 17 00:00:00 2001 From: cuz Date: Sun, 2 May 2004 09:50:27 +0000 Subject: [PATCH] More output when using -v. git-svn-id: svn://svn.cc65.org/cc65/trunk@3004 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cc65/main.c b/src/cc65/main.c index e7f51dd0c..ff6a52570 100644 --- a/src/cc65/main.c +++ b/src/cc65/main.c @@ -874,19 +874,23 @@ int main (int argc, char* argv[]) if (F == 0) { Fatal ("Cannot open output file `%s': %s", OutputFile, strerror (errno)); } + Print (stdout, 1, "Opened output file `%s'\n", OutputFile); /* Write the output to the file */ WriteOutput (F); + Print (stdout, 1, "Wrote output to `%s'\n", OutputFile); /* Close the file, check for errors */ if (fclose (F) != 0) { remove (OutputFile); Fatal ("Cannot write to output file (disk full?)"); } + Print (stdout, 1, "Closed output file `%s'\n", OutputFile); /* Create dependencies if requested */ if (CreateDep) { DoCreateDep (OutputFile); + Print (stdout, 1, "Creating dependeny file"); } }