User's Guide updates:
[scons.git] / doc / user / nodes.xml
index 4ada5b74c3397491c692411e3a5e108752cb9ff7..28af9736822e7d5ae715cca063b72d2a9de3df71 100644 (file)
 
     <screen>
        C:\><userinput>scons -Q</userinput>
-       cl -DGOODBYE /c goodbye.c /Fogoodbye.obj
-       cl -DHELLO /c hello.c /Fohello.obj
+       cl /Fogoodbye.obj /c goodbye.c -DGOODBYE
+       cl /Fohello.obj /c hello.c -DHELLO
        link /nologo /OUT:hello.exe hello.obj goodbye.obj
     </screen>
 
       C:\><userinput>scons -Q</userinput>
       The object file is: hello.obj
       The program file is: hello.exe
-      cl /nologo /c hello.c /Fohello.obj
+      cl /Fohello.obj /c hello.c /nologo
       link /nologo /OUT:hello.exe hello.obj
     </screen>