]> git.sur5r.net Git - cc65/commitdiff
More output when using -v.
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 2 May 2004 09:50:27 +0000 (09:50 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 2 May 2004 09:50:27 +0000 (09:50 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3004 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/main.c

index e7f51dd0c054c8bb33108f8a055427372afd046e..ff6a52570ac032b037c9bf65541951a1e12081c8 100644 (file)
@@ -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");
        }
 
     }