The TOUCH utility changes the modification date of files to the current date. TOUCH commands have the form:
touch file1 file2 ...Use TOUCH with SMAKE to maintain the dates of files and to modify the operation of SMAKE. For example, to recompile all the C++ source files that comprise a program (not just the ones last modified), use the following commands:
touch *.cpp smakeAlso, if you edit one or more files, but change only comments or other items that do not affect the resultant object file, then TOUCH does not remake the object files.
touch *.obj smake