First, you should try restarting once and trying to compile the program again, as restarting will recreate all files in /dev ...
Else, you can change dates of files in your system using the "touch" command. Running 'touch *' in a directory will set all files in the current directory to have the current system date as their modificaction date.
As you need to change the dates of all files in the system, you will need a simple loop to do it, something like running
Code:
for i in `find` ; do touch $i ; done
In the / directory.
But be careful, running this changes all dates and may have a bad affect on some applications/processes. Also you should unmount all drives before running this.