[ci skip] update generated files
[scons.git] / doc / generated / examples / caching_ex1_5.xml
blob193d134b7d5356b5efd420ab8f4257c9b35c4345
1 <screen xmlns="http://www.scons.org/dbxsd/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.scons.org/dbxsd/v1.0 http://www.scons.org/dbxsd/v1.0/scons.xsd">% <userinput>scons -Q --cache-disable</userinput>
2 cc -o hello.o -c hello.c
3 cc -o hello hello.o
4 % <userinput>scons -Q -c</userinput>
5 Removed hello.o
6 Removed hello
7 % <userinput>scons -Q --cache-disable</userinput>
8 cc -o hello.o -c hello.c
9 cc -o hello hello.o
10 % <userinput>scons -Q --cache-force</userinput>
11 scons: `.' is up to date.
12 % <userinput>scons -Q</userinput>
13 scons: `.' is up to date.
14 </screen>