one: preproc2.C g++ -o one preproc2.C # Expected result # compile failure two: preproc2.C g++ -o two -DTRIGGER preproc2.C # Expected output # # This is line 8 of file preproc2.C # This is line 100 of file preproc2.C # This is line 1000 of file jabberwock.C # The compilation occured at 11:45:30 on Oct 15 2001 # We are being compiled under C++: 1 # The compiler is standard-C compliant. 1 # # Note: The fourth line will reflect the time that the # program was compiled. clean: rm -f two *.o