User's Guide updates:
[scons.git] / doc / user / less-simple.xml
index 35b6b608a9048bc5042708c939b82095f3178577..28fc0537b428d4f6f4c5f266a734812ffe18efc1 100644 (file)
 
     <screen>
        C:\><userinput>scons -Q</userinput>
-       cl /nologo /c hello.c /Fohello.obj
+       cl /Fohello.obj /c hello.c /nologo
        link /nologo /OUT:new_hello.exe hello.obj
     </screen>
 
 
     <screen>
        C:\><userinput>scons -Q</userinput>
-       cl /nologo /c file1.c /Fofile1.obj
-       cl /nologo /c file2.c /Fofile2.obj
-       cl /nologo /c prog.c /Foprog.obj
+       cl /Fofile1.obj /c file1.c /nologo
+       cl /Fofile2.obj /c file2.c /nologo
+       cl /Foprog.obj /c prog.c /nologo
        link /nologo /OUT:program.exe prog.obj file1.obj file2.obj
     </screen>