|
Compiling Compiling Code C Implementation C++ Implementation Language Extensions Mixing Languages Assembly Language Inline Assembler Optimizing Code Numerics Programming Regular Expressions Acrtused Pragmas Precompiled Headers Predefined Macros Warning Messages Error Messages Runtime Messages Linking Optlink Switches Module Definition Files Operation and Design Error Messages Win32 Programming Win32 Programming DOS and Win16 Programming Memory Models 16 Bit Pointer Types and Type Modifiers Handle Pointers DOS DOS 32 (DOSX) Win16 Win16 DLLs Win16 Prolog/Epilog C/C++ Extensions Contract Programming __debug statement __debug declaration Dynamic Profiling Embedding C in HTML Tools BCC CHMOD CL COFF2OMF COFFIMPLIB DMC DIFF DIFFDIR DUMP DUMPOBJ DUMPEXE EXE2BIN FLPYIMG GREP HC IMPLIB LIB LIBUNRES MAKE MAKEDEP ME OBJ2ASM PATCHOBJ RC RCC SC SHELL SMAKE TOUCH UNMANGLE WHEREIS Porting to DMC++ Switching to DMC++ from Microsoft from Borland Porting Guide |
Changing Dates with TOUCHSetting a file to the current date is called touching it. This is handy to, say, recompile all your C++ source files, regardless of their dates. Or, to use old object files without recompiling the source files.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 |